Official Model Context Protocol server for Marvin CMS.
Marvin MCP server exists for a simple reason — assistants are far more useful when they can act on Marvin directly instead of describing what you should do. Official Model Context Protocol server for Marvin CMS.
marvin-mcp is the LLM-facing adapter for Marvin. It talks directly to @inneropen/marvin-sdk; it does not shell out to marvin-cli and it does not recreate Marvin API behavior.
Once Marvin is connected, these are the calls the assistant has available:
marvin_describe_capabilities — Describe Marvin MCP capabilities and SDK capability supportmarvin_get_workspace — Get workspace info and site settingsmarvin_list_entries — List entries with entryType, collection, limit, offsetmarvin_get_entry — Get one entry by slugmarvin_list_collections — List collectionsmarvin_get_collection — Get one collection by slugmarvin_get_collection_entries — Get entries in a collectionmarvin_list_assets — List asset metadatamarvin_list_resources — List reusable resourcesmarvin_get_resource — Get one resource by slugYou will need 4 environment variables: MARVIN_API_URL, MARVIN_SITE_CLIENT_TOKEN, MARVIN_WORKSPACE_SLUG, MARVIN_MCP_READ_ONLY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
@inneropen/marvin-mcp on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.
Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Marvin's toolset — marvin_describe_capabilities, marvin_get_workspace, marvin_list_entries and 7 more — is a fair guide to whether it matches your workflow. It is maintained by jmashburn; worth a glance at recent repository activity before you build anything load-bearing on it.
We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.
| Tool | What it does |
|---|---|
| marvin_describe_capabilities | Describe Marvin MCP capabilities and SDK capability support |
| marvin_get_workspace | Get workspace info and site settings |
| marvin_list_entries | List entries with entryType, collection, limit, offset |
| marvin_get_entry | Get one entry by slug |
| marvin_list_collections | List collections |
| marvin_get_collection | Get one collection by slug |
| marvin_get_collection_entries | Get entries in a collection |
| marvin_list_assets | List asset metadata |
| marvin_list_resources | List reusable resources |
| marvin_get_resource | Get one resource by slug |
{
"mcpServers": {
"marvin": {
"command": "npx",
"args": ["-y", "@inneropen/marvin-mcp"],
"env": {
"MARVIN_API_URL": "https://marvin.example.com",
"MARVIN_SITE_CLIENT_TOKEN": "${MARVIN_SITE_CLIENT_TOKEN}",
"MARVIN_WORKSPACE_SLUG": "example-workspace",
"MARVIN_MCP_READ_ONLY": "true"
}
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| MARVIN_API_URL | Endpoint or connection string the server talks to. | Yes |
| MARVIN_SITE_CLIENT_TOKEN | Credential the server authenticates with. | Yes |
| MARVIN_WORKSPACE_SLUG | Configuration value read at startup. | Optional |
| MARVIN_MCP_READ_ONLY | Configuration value read at startup. | Optional |
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.