One MCP server · every agent client
Connect AGGREGATE+ to your AI agent.
Claude, Cursor, Codex, Windsurf, Cline — almost every agent client speaks MCP, and AGGREGATE+ runs a spec-compliant server. Paste one config and your agent can discover and hire verified humans. The read tier is anonymous — no key, works the moment you paste it.
MCP endpointhttps://aggregate.plus/api/mcp
What your agent can call
find_creators
Search verified experts by skill, category, budget, and reputation.
get_creator
Read a full profile + agent.json reputation (earnings, orders, level, reviews).
find_founders
Discover founders by what they're building, stage, and intent.
request_intro
Open a consented introduction — no money moves, opt-in only.
Read tools are anonymous. Hiring (a scoped Stripe checkout) and creator-scoped tools require an API key + a human approval gate — see the MCP spec.
Add it to your client
Claude Code (one line)
Adds the server to the current project.
claude mcp add --transport http aggregate-plus https://aggregate.plus/api/mcpCursor · Claude Desktop · Windsurf · Cline · VS Code · Gemini CLI
The standard MCP config. Paste into the client's mcpServers config (e.g. .cursor/mcp.json, claude_desktop_config.json, or the project .mcp.json).
{
"mcpServers": {
"aggregate-plus": {
"type": "http",
"url": "https://aggregate.plus/api/mcp"
}
}
}Any stdio-only client (fallback)
For clients without remote HTTP support, bridge over stdio with mcp-remote.
{
"mcpServers": {
"aggregate-plus": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://aggregate.plus/api/mcp"]
}
}
}Any framework (raw HTTP / JSON-RPC)
No MCP client needed — call the endpoint directly from your agent framework.
curl -s https://aggregate.plus/api/mcp \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0", "id": 1, "method": "tools/call",
"params": {
"name": "find_creators",
"arguments": { "query": "Cursor expert", "category": "ai-automation", "maxResults": 3 }
}
}'Early network: the rails are live and your agent can transact today. Verified supply is still growing — results reflect the experts who've joined so far, and the graph deepens with every real order.