Get Started

Three ways to connect your agent to the MFM service catalog. Pick the integration that fits your stack.

REST API

api.mfm.dev

Query the catalog over HTTP. List services, fetch manifests, run structured discovery. No auth required — just curl and go.

Read API docs →

MCP Server

mcp.mfm.dev

Connect your agent directly over Model Context Protocol. Available as an npm package (stdio) or remotely (SSE). Works with Claude, GPT, and any MCP-compatible client.

See MCP setup →

Explorer

mfm.dev/explorer

Browse every service visually. Paginated list, click through to raw JSON manifests. Good for humans exploring what agents will consume.

Open explorer →

Quick Start

# List all services
curl https://api.mfm.dev/v1/services | jq

# Fetch a specific manifest
curl https://api.mfm.dev/v1/services/stripe | jq

# Discover services by capability
curl -X POST https://api.mfm.dev/v1/discover \
  -H "Content-Type: application/json" \
  -d '{"hard_filters":{"capabilities":["checkout"]}}'