The admin MCP is a hosted Mintlify MCP server that lets AI tools edit your documentation directly. Agents check out branches, read and edit pages, manage navigation, and open pull requests through the MCP protocol. No Git client, no local clone, no MDX file system to set up. Use the admin MCP when you want to make documentation changes from any MCP-compatible client like Claude, Cursor, or VS Code without leaving the conversation to switch over to a terminal.Documentation Index
Fetch the complete documentation index at: https://mintlify-admin-mcp-add-admin-mcp-page-7c63184.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
The admin MCP is separate from the documentation MCP server. The documentation MCP is read-only and lets your end users search your published docs. The admin MCP is write-capable and lets you and your team author and edit your docs source.
Admin MCP compared to the docs MCP
| Capability | Docs MCP (/mcp) | Admin MCP (mcp.mintlify.com) |
|---|---|---|
| Search published content | Yes | Yes |
| Read full page content | Yes | Yes |
| Edit pages | No | Yes |
| Create, move, and delete navigation nodes | No | Yes |
Update docs.json configuration | No | Yes |
| Open pull requests | No | Yes |
| Audience | Your end users | You and your team |
Getting started
Prerequisites:- A Mintlify project with a connected Git repository
- Editor or admin access to the project
- An MCP-compatible AI tool (Claude, Cursor, Claude Code, VS Code, and others)
https://mcp.mintlify.com. Add it to your AI tool the same way you would add any remote MCP server.
- Claude
- Claude Code
- Cursor
- VS Code
Add the connector
- Navigate to the Connectors page in Claude settings.
- Select Add custom connector.
- Use the following details:
- Name:
Mintlify admin - URL:
https://mcp.mintlify.com
- Name:
- Select Add.
How it works
The admin MCP runs every change against a branch in your documentation repository, the same way the web editor does. A typical session follows this shape:Check out a branch
The agent binds the session to a branch. If you don’t specify one, the admin MCP creates a fresh
admin-mcp/<slug>-<sha> branch from your deploy branch.Read, edit, or create content
The agent reads, searches, and edits MDX pages. It can also manage navigation nodes (tabs, groups, pages) and update
docs.json settings, all without touching the underlying files directly.What the admin MCP can do
- Edit pages. String-replace edits and full-page rewrites against any MDX file in your project.
- Create new pages. Add MDX content and insert the new page into your navigation in one step.
- Restructure navigation. Add, rename, reorder, or remove tabs, groups, and pages in
docs.json. - Update site configuration. Change theme, SEO, redirects, integrations, and other
docs.jsonsettings. - Search across the site. Find every page that mentions a term, function, or component before making changes.
- Open pull requests. Save a session to push the branch and open a PR for review.
Sample prompts
These prompts work well once your admin MCP is connected. Adapt them to your project.Add a new page
Restructure navigation
Sweep a deprecated term
Update site config
Frequently asked questions
Do I need Git installed to use the admin MCP?
Do I need Git installed to use the admin MCP?
No. The admin MCP performs all Git operations on the server. You don’t need to install Git, clone your docs repository, or know any Git commands. Branches, commits, and pull requests are all created through the MCP tools.
How is this different from the documentation MCP server?
How is this different from the documentation MCP server?
The documentation MCP, hosted at the
/mcp path of your docs site, is read-only and exposes your published docs so your end users’ AI tools can answer questions about your product. The admin MCP, hosted at mcp.mintlify.com, is write-capable and intended for you and your team to author and edit content.What happens to my changes if I don't save?
What happens to my changes if I don't save?
Edits live on the session branch until you save or discard. Saving opens a pull request with the changes. Discarding ends the session without creating a PR. Sessions that go idle eventually expire.
Can I work on an existing branch instead of a new one?
Can I work on an existing branch instead of a new one?
Yes. Pass the branch name when starting the session. If the branch already exists in Git, the session attaches to it as-is. If it doesn’t, the admin MCP creates it from your deploy branch.
Who can use the admin MCP?
Who can use the admin MCP?
Anyone with editor or admin access to your Mintlify project. Permissions match what they have in the dashboard and web editor.