Sign In

bidcraft-mcp

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bidcraft-mcp

MCP server for BidCraft — AI-powered RFP analysis and proposal generation

latest
Source
npmnpm
Version
0.1.1
Version published
Weekly downloads
18
38.46%
Maintainers
1
Weekly downloads
 
Created
Source

BidCraft MCP Server

Analyze RFPs and generate winning proposals directly from Claude, Cursor, or any MCP-compatible AI tool.

Setup

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "bidcraft": {
      "command": "npx",
      "args": ["bidcraft-mcp"],
      "env": {
        "BIDCRAFT_API_KEY": "your_api_key_here"
      }
    }
  }
}

Environment Variables

VariableRequiredDescription
BIDCRAFT_API_KEYNo (free tier available)API key from bidcraft.site for unlimited proposals
BIDCRAFT_API_URLNoCustom API URL (default: https://bidcraft.site)

Tools

analyze_rfp

Parse RFP text and extract structured requirements (mandatory, desirable, informational) with deadlines.

Parameters:

  • text (required): Full RFP text or key sections

generate_proposal

Generate a proposal from RFP text. Two modes:

  • Quick (no API key): Pass rfpText for instant executive summary + key points
  • Full (API key): Pass rfpId from analysis for complete multi-section proposal

Parameters:

  • rfpText (optional): RFP text for quick proposal
  • rfpId (optional): RFP ID from analyze_rfp for full proposal
  • companyName (optional): Your company name
  • sections (optional): Specific sections to generate

score_compliance

Score how well your proposal covers each RFP requirement. Returns coverage percentage, gaps, and suggestions.

Parameters:

  • proposalId (required): Proposal ID from generate_proposal

calculate_win_score

Calculate win probability (0-100) with risk factors, strengths, and strategic recommendations.

Parameters:

  • proposalId (required): Proposal ID from generate_proposal

extract_pdf_text

Extract text from a base64-encoded PDF for use with analyze_rfp.

Parameters:

  • pdfBase64 (required): Base64-encoded PDF content
  • filename (optional): Original filename

Example Workflow

  • Extract PDF: extract_pdf_text with your RFP document
  • Analyze: analyze_rfp with the extracted text
  • Generate: generate_proposal with the RFP ID
  • Score: score_compliance to find gaps
  • Win: calculate_win_score for win probability

Keywords

mcp

FAQs

Package last updated on 18 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts