Unified MCP Service

The Unified MCP Service is the company's agent-facing surface. Its remote Model Context Protocol endpoint at https://mcp.unified.com/mcp answers JSON-RPC over HTTP and is gated by OAuth bearer tokens issued by https://mcp.unified.com/; an anonymous tools/list call returns 401 invalid_token with an RFC 6750 WWW-Authenticate challenge naming the RFC 9728 resource metadata document. The same FastAPI build is served on api.unified.com, which publishes an OpenAPI 3.1.0 description covering the root and health/readiness/liveness endpoints.

Operations 5

GET / Root #
GET /health/ Health Check #
GET /health Health Check #
GET /health/ready Readiness Check #
GET /health/live Liveness Check #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/unified-mcp-service"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

unified-mcp-service-openapi.json Raw ↑
{"openapi":"3.1.0","info":{"title":"unified-mcp-service","version":"0.0.59"},"paths":{"/":{"get":{"summary":"Root","description":"Root endpoint.","operationId":"root__get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}}}},"/health/":{"get":{"tags":["health"],"summary":"Health Check","description":"Basic health check endpoint.","operationId":"health_check_health__get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HealthCheckResponse"}}}}}}},"/health":{"get":{"tags":["health"],"summary":"Health Check","description":"Basic health check endpoint.","operationId":"health_check_health_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HealthCheckResponse"}}}}}}},"/health/ready":{"get":{"tags":["health"],"summary":"Readiness Check","description":"Readiness check endpoint.","operationId":"readiness_check_health_ready_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HealthCheckResponse"}}}}}}},"/health/live":{"get":{"tags":["health"],"summary":"Liveness Check","description":"Liveness check endpoint.","operationId":"liveness_check_health_live_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HealthCheckResponse"}}}}}}}},"components":{"schemas":{"HealthCheckResponse":{"properties":{"status":{"type":"string","title":"Status"},"message":{"type":"string","title":"Message"}},"type":"object","required":["status","message"],"title":"HealthCheckResponse","description":"Health check response payload."},"SuccessResponse":{"properties":{"message":{"type":"string","title":"Message"},"data":{"additionalProperties":{"type":"string"},"type":"object","title":"Data"}},"type":"object","required":["message","data"],"title":"SuccessResponse","description":"Standard success response payload."}}}}