Skip to content

Quick Start

Get started with UCM in 2 minutes.

Add UCM to your MCP config (Claude Desktop, Claude Code, Cursor, etc.):

json
{
  "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.

Option 2: HTTP API

1. Register

bash
curl -X POST https://registry.ucm.ai/v1/agents/register \
  -H "Content-Type: application/json" \
  -d '{"name": "my-agent"}'

Response:

json
{
  "agent_id": "abc123...",
  "api_key": "ucm_key_...",
  "name": "my-agent",
  "credits": {
    "balance": "1.00",
    "currency": "USD"
  }
}

Save the api_key — it is shown only once. You get $1.00 free credits immediately.

2. Call a Service

bash
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",
    "params": { "query": "latest AI news" }
  }'

Response:

json
{
  "tx_id": "...",
  "amount_charged": "0.01",
  "credits_remaining": "0.99",
  "result": {
    "results": [
      { "title": "...", "url": "...", "content": "..." }
    ]
  }
}

That's it — one call to register, one call to use any service.

Option 3: Agent Prompt

Give your AI 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, and start discovering services autonomously.

Service Catalog

ServiceDescriptionPrice
ucm/web-searchReal-time web search$0.01/call
ucm/web-scrapeScrape webpages to markdown$0.02/call
ucm/image-generationText-to-image$0.05/call
ucm/code-sandboxExecute code in sandbox$0.03/call
ucm/text-to-speechText-to-speech$0.01/call
ucm/speech-to-textAudio transcription$0.01/call
ucm/emailSend emails$0.01/send
ucm/doc-convertDocument to markdown$0.02/call
ucm/us-stockUS stock market data (11 endpoints)$0.01/call
ucm/cn-financeChina financial data (26 endpoints)$0.01/call
ucm/translateText translation (50+ languages)$0.01/call
ucm/newsNews search (GNews)$0.01/call
ucm/moviesMovie database (OMDB)$0.01/call

Free Services

ServiceDescriptionEndpoints
ucm/weatherWeather, forecast, air quality4
ucm/wikipediaArticle summaries and search2
ucm/currencyExchange rates (30+ currencies)3
ucm/countriesCountry info (250+ countries)3
ucm/holidaysPublic holidays (100+ countries)3
ucm/dictionaryEnglish definitions and phonetics1
ucm/booksBook search (40M+ books)2
ucm/geocodePlace name to coordinates1
ucm/mathMath evaluation and unit conversion1
ucm/ip-geoIP to geolocation1
ucm/addressAddress geocoding and reverse2
ucm/papersAcademic paper search (200M+ papers)2
ucm/nutritionNutrition data (USDA FoodData)2
ucm/qr-codeQR code generation1
ucm/cryptoCryptocurrency data (CoinGecko)3
ucm/timezoneCurrent time in any timezone2
ucm/domainDomain WHOIS/RDAP info1
ucm/quotesInspirational quotes3
ucm/hacker-newsHacker News stories4
ucm/random-dataRandom test data (FakerAPI)4
ucm/poetryPoetry from PoetryDB3
ucm/datamuseWord finding (rhymes, synonyms)1
ucm/universitiesGlobal university search1
ucm/zip-codePostal code lookup (60+ countries)1
ucm/triviaTrivia questions (4000+)2
ucm/jokesCategorized jokes2
ucm/adviceRandom life advice2
ucm/boredActivity suggestions1
ucm/bibleBible verse lookup1
ucm/chuck-norrisChuck Norris jokes2
ucm/recipesRecipe search (TheMealDB)3
ucm/cocktailsCocktail recipes3
ucm/breweryBrewery search2
ucm/food-productsFood barcode/ingredient lookup2
ucm/sunrise-sunsetSunrise/sunset times1
ucm/dog-imagesRandom dog images by breed2
ucm/cat-factsCat facts and trivia2
ucm/avatarsSVG avatar generation1
ucm/colorsColor info and schemes2
ucm/lorem-ipsumLorem ipsum text generation1
ucm/nasaNASA APOD and Mars photos2
ucm/spacexSpaceX launches and rockets2
ucm/issISS position and astronauts2
ucm/space-newsSpace flight news2
ucm/arxivarXiv paper search1
ucm/earthquakesUSGS earthquake data2
ucm/world-bankWorld Bank development data2
ucm/fdaFDA drug and recall data2
ucm/carbonUK grid carbon intensity2
ucm/elevationElevation lookup by coordinates1
ucm/agifyAge prediction by name1
ucm/genderizeGender prediction by name1
ucm/nationalizeNationality prediction by name1
ucm/uk-postcodesUK postcode lookup2
ucm/vehiclesVehicle VIN decoding (NHTSA)2
ucm/met-museumMet Museum collection2
ucm/art-chicagoArt Institute of Chicago2
ucm/tv-showsTV show search (TVMaze)3
ucm/animeAnime/manga search (Jikan)3
ucm/itunesiTunes content search2
ucm/musicMusic metadata (MusicBrainz)2
ucm/radioInternet radio search2
ucm/free-gamesFree-to-play games2
ucm/game-dealsGame price comparison2
ucm/pokemonPokemon data (PokeAPI)2
ucm/dndD&D 5e reference3
ucm/memesMeme templates1
ucm/ip-lookupPublic IP lookup1
ucm/barcodeBarcode generation1
ucm/waybackWeb archive snapshots1
ucm/npmnpm package info2
ucm/pypiPyPI package info1
ucm/github-reposGitHub repo search2
ucm/country-flagsCountry flag images1
ucm/deck-of-cardsVirtual card deck2
ucm/star-warsStar Wars data (SWAPI)3
ucm/xkcdXKCD comics2
ucm/rick-mortyRick & Morty data2
ucm/nobel-prizeNobel Prize laureates2
ucm/historical-eventsOn this day in history2
ucm/kanyeKanye West quotes1
ucm/cratesRust crate registry2
ucm/docker-hubDocker image search1
ucm/lichessChess puzzles and players2
ucm/periodic-tableChemical elements2
ucm/airportsAirport IATA lookup2
ucm/random-foxRandom fox images1

Browse the live catalog: GET https://registry.ucm.ai/v1/services

Next Steps