Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"ucm": {
"env": {
"UCM_API_KEY": "ucm_key_..."
},
"args": [
"-y",
"@ucm/mcp-server@latest"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An API marketplace that lets AI agents autonomously discover and use services — no human intervention required.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@ucm/mcp-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @ucm/mcp-server against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml / ecommerce
Dynamic problem-solving through sequential thought chains
Persistent memory using a knowledge graph
An autonomous agent that conducts deep research on any data using any LLM providers
🌊 The leading agent orchestration platform for Claude. Deploy intelligent multi-agent swarms, coordinate autonomous workflows, and build conversational AI systems. Features enterprise-grade architecture, distributed swarm intelligence, RAG integration, and native Claude Code / Codex Integration
MCP Security Weekly
Get CVE alerts and security updates for io.github.ucmai/ucm and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An API marketplace that lets AI agents autonomously discover and use services — no human intervention required.
Today, AI agents can only use tools that developers have pre-integrated. UCM gives agents autonomous API access:
Agent needs to search the web
→ ucm_discover("search the web for information")
→ Found: ucm/web-search, $0.01/call
→ ucm_call("ucm/web-search", "search", { query: "..." })
→ Results returned, $0.01 deducted from credits
No UI, no manual approval — register once, get $1.00 free credits, start calling APIs.
POST /v1/call atomically purchases and executes any servicenpx @ucm/mcp-server gives any MCP-capable agent 7 marketplace toolsGive your agent this prompt:
Read https://registry.ucm.ai/onboarding.md and follow the instructions to join UCM.
The agent will self-register, get an API key + $1.00 credits, and start using services autonomously.
Add to your MCP config (Claude Desktop, Claude Code, Cursor, etc.):
{
"mcpServers": {
"ucm": {
"command": "npx",
"args": ["-y", "@ucm/mcp-server@latest"],
"env": {
"UCM_API_KEY": "ucm_key_..."
}
}
}
}
No API key yet? The ucm_register tool will create one automatically.
MCP Tools (7):
| Tool | Description |
|---|---|
ucm_discover | Search for services by natural language need |
ucm_call | Call a service (buy + execute atomically, auto-refund on failure) |
ucm_balance | Check credit balance |
ucm_history | View transaction history |
ucm_service_info | Get service details and endpoints |
ucm_register | Self-register as agent (free, $1.00 credits) |
ucm_list_services | Browse the full service catalog |
# 1. Register (free, get $1.00 credits)
curl -X POST https://registry.ucm.ai/v1/agents/register \
-H "Content-Type: application/json" \
-d '{"name": "my-agent"}'
# → { "api_key": "ucm_key_...", "credits": { "balance": "1.00" } }
# 2. Call a service
curl -X POST https://registry.ucm.ai/v1/call \
-H "Authorization: Bearer ucm_key_..." \
-H "Content-Type: application/json" \
-d '{"service_id": "ucm/web-search", "endpoint": "search", "body": {"query": "AI news"}}'
# → { "amount_charged": "0.01", "result": { ... } }
pip install ucm
from ucm import UCMClient
client = UCMClient(
registry_url="https://registry.ucm.ai",
api_key="ucm_key_...",
)
# Discover services
services = await client.discover("weather forecast API")
# Call a service
result = await client.call("ucm/web-search", "search", {"query": "AI news"})
# Check balance
balance = await client.balance()
100 services, 217 endpoints (87 free, 13 paid at $0.01–$0