UCM MCP Server
OfficialProvides access to arXiv, enabling searches and retrieval of academic papers.
Provides access to Docker Hub, allowing searches for Docker images.
Provides access to GitHub, allowing searches for repositories.
Provides access to iTunes, enabling searches for music and media.
Provides access to Lichess, enabling chess-related operations.
Provides access to NASA data and services.
Provides access to npm, allowing searches for packages.
Provides access to PyPI, allowing searches for Python packages.
Allows sending emails via the Resend API.
Provides access to Rust crates, allowing searches for libraries.
Provides access to SpaceX data and information.
Provides access to Wikipedia, enabling searches for articles.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@UCM MCP Serversearch the web for the latest AI news"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
UCM — Universal Commerce Marketplace
An API marketplace that lets AI agents autonomously discover and use services — no human intervention required.
Why UCM
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 creditsNo UI, no manual approval — register once, get $1.00 free credits, start calling APIs.
Related MCP server: @1ly/mcp-server
Features
100 Live Services — Web search, image generation, code sandbox, TTS, NASA, recipes, anime, Pokemon, D&D, npm/PyPI, Nobel Prize, and 80+ more (87 free)
$0.01–$0.05 per call — Affordable micropayments with $1.00 free credits on registration
One-Step API Calls —
POST /v1/callatomically purchases and executes any serviceAuto-Refund on Failure — Credits refunded automatically if upstream API fails
MCP Server —
npx @ucm/mcp-servergives any MCP-capable agent 7 marketplace toolsSemantic Discovery — Natural language search powered by pgvector embeddings
Credits System — $1.00 on registration, $2.00 bonus when claimed via dashboard, redemption & referral codes
Dashboard — dashboard.ucm.ai — manage agents, credits, and usage history
Quick Start
For AI Agents (Recommended)
Give 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.
MCP Server
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 |
| Search for services by natural language need |
| Call a service (buy + execute atomically, auto-refund on failure) |
| Check credit balance |
| View transaction history |
| Get service details and endpoints |
| Self-register as agent (free, $1.00 credits) |
| Browse the full service catalog |
HTTP API
# 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": { ... } }Python SDK
pip install ucmfrom 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()Service Catalog
100 services, 217 endpoints (87 free, 13 paid at $0.01–$0.05/call).
Paid Services
Service | Price | What It Does |
ucm/web-search | $0.01 | Search the web (Tavily) |
ucm/web-scrape | $0.02 | Scrape web pages (Firecrawl) |
ucm/image-generation | $0.05 | Generate images from text (Together AI) |
ucm/code-sandbox | $0.03 | Execute code in sandbox (E2B) |
ucm/text-to-speech | $0.01 | Convert text to audio (Kokoro TTS) |
ucm/speech-to-text | $0.01 | Transcribe audio (Whisper) |
ucm/email | $0.01 | Send emails (Resend) |
ucm/doc-convert | $0.02 | Convert documents (Firecrawl) |
ucm/us-stock | $0.01 | US stock market data (Finnhub) |
ucm/cn-finance | $0.01 | China financial data (Tushare Pro) |
ucm/translate | $0.01 | Text translation (MyMemory) |
ucm/qr-code | $0.01 | Generate QR codes (GoQR.me) |
ucm/news | $0.01 | Latest news (NewsData.io) |
Free Services (87)
Weather, Wikipedia, currency exchange, countries, holidays, dictionary, books, geocode, math, IP geolocation, address lookup, academic papers, nutrition, crypto prices, timezone, domain info, quotes, Hacker News, random data, poetry, movies, word associations, universities, zip codes, trivia, jokes, advice, bored activity ideas, Bible verses, Chuck Norris facts, recipes, cocktails, breweries, food products, sunrise/sunset, dog images, cat facts, avatars, colors, Lorem Ipsum, NASA, SpaceX, ISS tracker, space news, arXiv papers, earthquakes, World Bank, FDA data, carbon intensity, elevation, age/gender/nationality prediction, UK postcodes, vehicle data, Met Museum, Art Institute of Chicago, TV shows, anime, iTunes, music, radio stations, free games, game deals, Pokemon, D&D, memes, IP lookup, barcodes, Wayback Machine, npm, PyPI, GitHub repos, country flags, deck of cards, Star Wars, xkcd, Rick & Morty, Nobel Prize, historical events, Kanye quotes, Rust crates, Docker Hub, Lichess, periodic table, airports, random fox images.
Browse the live catalog: GET https://registry.ucm.ai/v1/services
API Reference
Method | Path | Auth | Description |
POST |
| API Key | Call a service (buy + execute in one step) |
POST |
| No | Register agent, get API key + $1.00 credits |
GET |
| No | Browse service catalog |
POST |
| No | Semantic service search |
GET |
| API Key | Check credit balance |
GET |
| API Key | Transaction history |
GET |
| No | Service details |
GET |
| API Key | Credit balance details |
GET |
| No | Agent onboarding guide |
Auth: Authorization: Bearer ucm_key_...
For the full endpoint list, see the API docs.
Documentation
Resource | Link |
Docs | |
Onboarding Guide | |
Dashboard | |
npm Package |
Support
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ucmai/ucm.ai'
If you have feedback or need assistance with the MCP directory API, please join our Discord server