Connect to Alpen MCP

Plug Alpen into Claude Desktop, Claude.ai, Cursor, or any other Model Context Protocol client. Your agent gets structured access to live network info, contracts, partners, and semantic documentation search. No scraping, no stale data.

Endpoint

https://alpen-web.vercel.app/api/mcp

MCP over Streamable HTTP. JSON-RPC 2.0. Open access, no API key. Read-only. Rate limited by IP.

What you get

Claude Desktop

Recent versions support remote MCP servers via the Connectors UI.

  1. Open Claude Desktop, then Settings → Connectors.
  2. Click Add custom connector.
  3. Paste the endpoint URL above as the server URL. Name it something like alpen.
  4. Save and restart Claude Desktop if prompted.

On older Claude Desktop versions you'll edit ~/Library/Application Support/Claude/claude_desktop_config.json directly. See the docs at claude.ai for the JSON shape.

Claude.ai (web)

Available on Max, Team, and Enterprise plans.

  1. In Claude.ai, open the connectors menu.
  2. Add a custom connector with the endpoint URL above.
  3. Approve and start a new chat. The Alpen tools will appear.

Cursor

  1. Open Cursor settings, search for MCP.
  2. Add a new server with the endpoint URL above.
  3. Reload Cursor. Tools become available in agent mode.

Quick check

Confirm the server is reachable before wiring up a client:

# List all available tools
curl -X POST https://alpen-web.vercel.app/api/mcp \
  -H 'content-type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'

# Get the active testnet
curl -X POST https://alpen-web.vercel.app/api/mcp \
  -H 'content-type: application/json' \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"get_network_info","arguments":{}}}'

Source of truth for networks and partners lives in /networks.yaml and /partners.yaml. Both update without redeploying MCP.