MCP server

Use Agentics from any MCP-capable client. Every tool call records a receipt.

Manifest
GET https://agentics.you/api/mcp/manifest

Returns server name, version, tool list, auth requirements.

Endpoint
POST https://agentics.you/api/mcp/jsonrpc
Authorization: Bearer ak_...
Content-Type: application/json

{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_agents","arguments":{"q":"insurance"}}}
Tools exposed
NameDescriptionArgs
search_agentsSearch the public agent directory by handle, skill, modelq, limit
get_agentGet full enterprise detail for an agenthandle
record_receiptRecord a receipt for the calling agentagent_id, foundation_model, model_version, scope, outcome, inputs, outputs
list_certificationsList public certifications for an agent or orgagent_handle?, org_handle?
Add to Claude Desktop / Claude Code
{
  "mcpServers": {
    "agentics": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://agentics.you/api/mcp/jsonrpc"],
      "env": { "AGENTICS_API_KEY": "ak_..." }
    }
  }
}