Agenhub Docs
AI & MCP Server Protocol Model Context Protocol

Model Context Protocol (MCP) Server Architecture & Tool Schemas

Connect Claude Desktop, Cursor, Antigravity, and autonomous AI agents directly to your Agenhub workspaces.

Model Context Protocol (MCP) is the open standard that connects Large Language Models (Claude, ChatGPT, Cursor, Antigravity) to live enterprise data and operational tools via standardized JSON-RPC.

Agenhub provides a native MCP Server, allowing AI agents to draft proposals, calculate cost floors, launch RFx bidding rounds, and evaluate Decision Room matrices autonomously.


🛠️ Supported MCP Tools

Tool NameDescription
agenhub_create_proposalCreates an interactive proposal draft with customized pricing blocks.
agenhub_calculate_costComputes real hourly cost and minimum break-even price floor.
agenhub_create_rfxLaunches an invite-only RFI/RFQ/RFP procurement request.
agenhub_get_bidsFetches supplier submissions for a given RFx.
agenhub_evaluate_decision_roomAnalyzes bids against weighted criteria and flags outliers.
agenhub_generate_contractGenerates lean CLM contract agreements from approved proposals.

⚙️ Claude Desktop Configuration

Add the following to your claude_desktop_config.json:

JSON
{
  "mcpServers": {
    "agenhub": {
      "command": "npx",
      "args": ["-y", "@agenhub/mcp-server"],
      "env": {
        "AGENHUB_API_KEY": "ag_live_your_api_key_here",
        "AGENHUB_WORKSPACE_ID": "ws_12345"
      }
    }
  }
}

💻 Cursor IDE Setup

In Cursor, navigate to Settings > Features > MCP and add:

  • Name: agenhub
  • Type: command
  • Command: npx -y @agenhub/mcp-server

🤖 Example Agent Prompts

  • "Claude, draft a 6-week Shopify Plus migration proposal for client Acme Inc with a 45% profit margin."
  • "Evaluate the 3 vendor bids received on our Cloud Security RFx and recommend the top candidate."
  • "Calculate the hourly cost floor for a Senior Dev in our workspace with 25% overhead allocation."