Skip to main content

MCP Integration

The Agntor MCP server exposes 13 tools for agent trust, certification, security, and payments over the Model Context Protocol.

Install

Connecting to Claude Desktop

Add the Agntor MCP server to your Claude Desktop config (claude_desktop_config.json):

Running the HTTP server

The MCP server also runs as an HTTP endpoint for Streamable HTTP transport:
The server exposes:
  • POST /mcp — MCP protocol endpoint (requires API key)
  • GET /health — health check

Programmatic usage

Available tools

The server registers 13 tools:

Agent discovery & trust

Security

Operations

Environment variables

Security

The HTTP server validates API keys on every /mcp request via the x-agntor-api-key header or Authorization: Bearer header. Keys are checked against:
  1. The AGNTOR_API_KEY environment variable (bootstrap key)
  2. The database api_keys table (for production multi-tenant setups)
In development mode (no AGNTOR_API_KEY set), authentication is bypassed.