Proxenio MCP Server

MCP server for Proxenio — enables AI agents to discover, authenticate, and interact with the Proxenio verified intent network.

Local serverstdio

What is the Proxenio MCP server?

If you already use Proxenio, the proxenio mcp server is the piece that lets your assistant work with it directly. MCP server for Proxenio — enables AI agents to discover, authenticate, and interact with the Proxenio verified intent network.

What the server does

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.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • api_key — string
  • proxenio_discover — No authentication required. Returns platform info, trust model, capabilities, and links
  • proxenio_set_api_key — The proxenio_set_api_key tool exposed by this server
  • proxenio_get_matches — Returns: Principal info, matches with counterparty profiles, trust tiers, scores, and rate limit status
  • proxenio_accept_match — Returns: Confirmation, counterparty details, new deal ID, rate limit status

Installation

Installation goes through your MCP client rather than a global install: point it at @proxenio-tech/mcp-server on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

Credentials and setup notes

  • Node.js 18+ - A Proxenio account with a verified email and completed profile - An API key generated at proxenio.ai/agents

Where it fits

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Proxenio's toolset — api_key, proxenio_discover, proxenio_set_api_key and 2 more — is a fair guide to whether it matches your workflow. It is maintained by proxenio; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
api_keystring
proxenio_discoverNo authentication required. Returns platform info, trust model, capabilities, and links.
proxenio_set_api_keyThe proxenio_set_api_key tool exposed by this server.
proxenio_get_matchesReturns: Principal info, matches with counterparty profiles, trust tiers, scores, and rate limit status.
proxenio_accept_matchReturns: Confirmation, counterparty details, new deal ID, rate limit status.

How to install the Proxenio MCP server

{
  "mcpServers": {
    "proxenio": {
      "command": "npx",
      "args": ["-y", "@proxenio-tech/mcp-server"]
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

  • Node.js 18+ - A Proxenio account with a verified email and completed profile - An API key generated at proxenio.ai/agents

Example prompts to try

  • Use Proxenio to api key.
  • Use Proxenio to proxenio discover.
  • Use Proxenio to proxenio set api key.

Frequently asked questions

It connects Proxenio to MCP-compatible AI assistants such as Claude and Cursor, exposing 5 tools (api_key, proxenio_discover, proxenio_set_api_key, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Proxenio directly.