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
| Name | Description | Args |
|---|---|---|
| search_agents | Search the public agent directory by handle, skill, model | q, limit |
| get_agent | Get full enterprise detail for an agent | handle |
| record_receipt | Record a receipt for the calling agent | agent_id, foundation_model, model_version, scope, outcome, inputs, outputs |
| list_certifications | List public certifications for an agent or org | agent_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_..." }
}
}
}