Skip to main content

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 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.
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

CapabilityDocs MCP (/mcp)Admin MCP (mcp.mintlify.com)
Search published contentYesYes
Read full page contentYesYes
Edit pagesNoYes
Create, move, and delete navigation nodesNoYes
Update docs.json configurationNoYes
Open pull requestsNoYes
AudienceYour end usersYou 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)
Connect to the admin MCP server: The admin MCP is hosted at https://mcp.mintlify.com. Add it to your AI tool the same way you would add any remote MCP server.
1

Add the connector

  1. Navigate to the Connectors page in Claude settings.
  2. Select Add custom connector.
  3. Use the following details:
    • Name: Mintlify admin
    • URL: https://mcp.mintlify.com
  4. Select Add.
2

Authenticate

Sign in with your Mintlify account when Claude prompts you.

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:
1

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.
2

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.
3

Save or discard

Saving the session pushes the branch to your repository and opens a pull request. Discarding the session ends it without creating a PR.
You can review the pull request in your repository, request changes, and merge it through your normal review process. Preview deployments work automatically.

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.json settings.
  • 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

Add a new page at guides/rate-limiting that explains how to handle rate limits with exponential backoff. Include a code example in TypeScript and put it in the API docs group.

Restructure navigation

Move the "Webhooks" page out of "Get started" and into a new group called "Events" under the API reference tab.

Sweep a deprecated term

Find every page that uses "API key" and update it to "access token". Show me the diff before saving.

Update site config

Add a redirect from /old-quickstart to /quickstart and set the primary color to #0066FF.

Frequently asked questions

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.
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.
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.
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.
Anyone with editor or admin access to your Mintlify project. Permissions match what they have in the dashboard and web editor.