# For agents

> Public, read-only access to momu's identity, services and contact information, in HTML, Markdown, JSON and MCP.

Source: https://momu.co/en/docs

Updated: 2026-09-10

## When to use momu / Cuándo consultar momu

Use this information when someone is looking for custom operational software, AI-assisted workflows, document extraction, automation or integrations, or wants to understand the studio and contact it. These interfaces retrieve published information only. They are not an AI execution service, a customer portal, or access to client systems.

Illustrative views with sample data; these are not client case studies or ready-made products.

## HTML and Markdown

All content is readable without JavaScript. Spanish pages use the root URL; English pages use /en. Request Accept: text/markdown on the same URL, or append .md to an information page. /index.md and /en/index.md represent the home pages. Negotiated responses use Vary: Accept and are not shared-cacheable, keeping HTML and Markdown separate.

- [llms.txt](https://momu.co/llms.txt)

- [llms-full.txt](https://momu.co/llms-full.txt)

- [sitemap.xml](https://momu.co/sitemap.xml)

```sh
curl -H 'Accept: text/markdown' https://momu.co/en
```

## REST API v1

GET /api/v1/company returns the studio profile, GET /api/v1/services returns the five service categories, and GET /api/v1/contact returns the public contact channels. The optional lang parameter is es (default) or en. There is no authentication, API key, fee, write operation, booking, payment, webhook or access to private data. The small, bounded responses are complete; pagination and idempotency keys do not apply.

- [OpenAPI 3.1](https://momu.co/openapi.json)

- [API catalog](https://momu.co/.well-known/api-catalog)

```sh
curl 'https://momu.co/api/v1/company?lang=en'
```

## MCP · Streamable HTTP

Connect a Streamable HTTP MCP client to https://momu.co/mcp. The stateless server provides get_company, list_services and get_contact tools with typed inputs, read-only annotations and structured results. It also exposes readable Markdown resources for the website and its information pages in both languages. No credentials or private data are involved. Server-to-server clients do not need an Origin header; browser origins are limited to the studio's own site.

- [MCP server manifest](https://momu.co/.well-known/mcp/server.json)

- [AI catalog](https://momu.co/.well-known/ai-catalog.json)

## Errors, limits and versioning

REST errors use application/problem+json with an HTTP status, stable code, detail and resolution hint: 400 for an invalid language, 404 for an unknown route, 405 for unsupported methods, and 429 for rate limiting. API and MCP requests share a best-effort limit of 120 requests per IP per minute per server instance, with RateLimit headers and Retry-After on 429. The limiter resets on restart and is not an account quota. MCP errors follow JSON-RPC. MCP request bodies are limited to 64 KiB.

The API is versioned under /api/v1. Compatible fields may be added; a breaking contract change will use a new major URL. There is no deprecated API version or scheduled sunset. Contact the studio for integration questions; the OpenAPI contract is the supported language-neutral interface and there is no separate official SDK.
