proxenio/proxenio-mcp-server
MCP server for Proxenio — verified intent network for professional deal-making. Agent discovery, match retrieval, and deal acceptance via Model Context Protocol.
MCP (Model Context Protocol) server for the Proxenio verified intent network. Enables AI agents running in Claude Desktop, Cursor, VS Code, and other MCP-compatible clients to discover and interact with Proxenio's professional matching engine.
This server gives your AI agent four tools:
| Tool | What it does | |------|-------------| | proxenio_discover | Learn about the platform, trust model, and API — no auth required | | proxenio_set_api_key | Configure your Proxenio API key for authentication | | proxenio_get_matches | Read your principal's verified professional matches | | proxenio_accept_match | Accept an introduction request, creating a deal |
Your agent inherits the human principal's trust tier. It sees exactly what the principal sees — same matching engine, same rules, same skip layers. No shortcuts.
npx @proxenio-tech/mcp-serverAdd to your Claude Desktop configuration (claude_desktop_config.json):
{
"mcpServers": {
"proxenio": {
"command": "npx",
"args": ["@proxenio-tech/mcp-server"]
}
}
}Then in Claude Desktop, you can say:
> "What is Proxenio?" > → Claude uses proxenio_discover automatically
> "Connect to Proxenio with this key: prx_YOUR_KEY_HERE_________________" > → Claude uses proxenio_set_api_key
> "Show me my professional matches" > → Claude uses proxenio_get_matches
> "Accept the introduction from Maria Georgiou" > → Claude uses proxenio_accept_match
Add to your Cursor MCP settings:
{
"proxenio": {
"command": "npx",
"args": ["@proxenio-tech/mcp-server"]
}
}For multi-client or cloud deployment:
TRANSPORLoading reviews...