Server data from the Official MCP Registry
Query your own PDFs and documents from any MCP client. Every answer cites the page it came from.
About
Query your own PDFs and documents from any MCP client. Every answer cites the page it came from.
Remote endpoints: streamable-http: https://mcp.docs2mcp.com/mcp
Security Report
Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Imported from the Official MCP Registry.
Endpoint verified · Requires authentication · 1 issue found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
Permissions Required
This plugin requests these system permissions. Most are normal for its category.
How to Connect
Remote Plugin
No local installation needed. Your AI client connects to the remote endpoint directly.
Add this to your MCP configuration to connect:
{
"mcpServers": {
"com-docs2mcp-docs2mcp": {
"url": "https://mcp.docs2mcp.com/mcp"
}
}
}Documentation
View on GitHubFrom the project's GitHub README.
docs2mcp
Query your own PDFs and documents from any MCP client, with every answer cited to the page and region it came from.
Website: https://docs2mcp.com · App: https://app.docs2mcp.com
This repository documents how to connect to the hosted docs2mcp MCP server. It contains no server code: docs2mcp is a hosted service, not something you run.
The server
| Endpoint | https://mcp.docs2mcp.com/mcp |
| Transport | Streamable HTTP |
| Authentication | OAuth 2.1. docs2mcp is a resource server; it verifies tokens and never issues them |
| Discovery | GET /.well-known/oauth-protected-resource/mcp (RFC 9728), which a client follows from the 401 challenge |
| Dynamic client registration | Supported. You never need a client id or secret |
| Health | GET /health, no credential required |
There is nothing to install. Add the endpoint above to your MCP client, approve access in the browser it opens, and your documents are queryable.
Getting an account
- Go to https://app.docs2mcp.com and upload documents. No account is needed to start.
- Sign up to keep them. Signing up converts the same library in place, so nothing you uploaded is lost.
- Connect a client using the steps below, and approve access when the browser opens.
Approve in the same browser you uploaded from. The anonymous session that holds your documents lives in that browser, and approving from a different one grants access to an empty library.
Tools
Five, each answering one job rather than exposing one table.
| Tool | What it does |
|---|---|
search_documents | Semantic search across your documents. Returns cited passages with page numbers and a link that opens the source at the right region. Filterable by document or collection |
list_documents | Lists your documents, with collection, page count and status |
get_document | One document's detail |
get_element | One element, with surrounding context. Returns a full table row where the element is a table cell |
list_collections | Lists your collections |
Every search result carries a source_url that opens the source document in a
browser at the exact page and region the text came from.
Connecting a client
Every walkthrough ends the same way: the client opens your browser, you choose Allow, and the tools appear. Only the first step differs.
Claude Desktop
- Open Claude Desktop and go to Settings → Connectors.
- Choose Add custom connector.
- Paste
https://mcp.docs2mcp.com/mcpas the URL, name itdocs2mcp, and save. - Claude opens your browser and asks whether to give it access. Choose Allow.
- The connector reads Connected. Start a new chat and ask about your documents.
Claude (web)
- Open claude.ai and go to Customize → Connectors.
- Click +, then choose Add custom connector.
- Paste
https://mcp.docs2mcp.com/mcpas the URL, name itdocs2mcp, and save. - Choose Allow when asked.
- The connector reads Connected.
Claude Code
claude mcp add --transport http docs2mcp https://mcp.docs2mcp.com/mcp
Then run /mcp, pick docs2mcp, and choose Authenticate. Claude Code opens
your browser. Choose Allow. /mcp now lists docs2mcp as connected.
Cursor
-
Open Settings → Tools & Integrations and choose New MCP Server. Cursor opens its
mcp.json. -
Add docs2mcp and save:
{ "mcpServers": { "docs2mcp": { "url": "https://mcp.docs2mcp.com/mcp" } } } -
Cursor shows docs2mcp as needing a login. Click it, then choose Allow.
VS Code
Two ways. The guided one first.
- Open the Command Palette and run MCP: Add Server.
- Choose HTTP (HTTP or Server-Sent events).
- Paste
https://mcp.docs2mcp.com/mcp, name itdocs2mcp, and choose Workspace or Global.
Or write it into mcp.json yourself — .vscode/mcp.json for one workspace, or
the file that MCP: Open User Configuration opens for every workspace:
{
"servers": {
"docs2mcp": {
"type": "http",
"url": "https://mcp.docs2mcp.com/mcp"
}
}
}
VS Code drives the OAuth round trip itself and opens a browser on the first
connection. Choose Allow. No clientId is needed — that is only for
servers without dynamic registration, and docs2mcp supports it.
ChatGPT
- Go to Settings → Apps → Advanced settings and turn on Developer mode.
- Back in Settings → Apps, choose Create.
- Name it
docs2mcp, pastehttps://mcp.docs2mcp.com/mcpas the server URL, confirm you trust the provider, and create it. - Choose Allow when ChatGPT sends you to approve access.
- In a chat, enable
docs2mcpfrom the + menu. This is per conversation, not once.
Perplexity
- Open Account settings → Connectors.
- Click + Custom connector, then choose Remote.
- Name it
docs2mcp, pastehttps://mcp.docs2mcp.com/mcpas the MCP Server URL, set Transport to Streamable HTTP and Authentication to OAuth. Leave the client id and secret empty — docs2mcp supports dynamic registration, so they are not needed. - Tick the acknowledgement box and click Add.
- Click the new connector card to sign in, and choose Allow.
Gemini CLI
gemini mcp add --transport http docs2mcp https://mcp.docs2mcp.com/mcp
Then start gemini and run /mcp auth docs2mcp. Choose Allow in the browser
it opens.
Codex CLI
codex mcp add registers stdio servers only, so a remote server is written into
the config by hand.
-
Add docs2mcp to
~/.codex/config.toml:[mcp_servers.docs2mcp] url = "https://mcp.docs2mcp.com/mcp" -
Run
codex mcp login docs2mcp. -
Choose Allow in the browser it opens.
Copilot Studio
Not the Copilot app: copilot.microsoft.com cannot add a custom MCP server.
- Open your agent in Copilot Studio and go to its Tools page.
- Select Add a tool → New tool → Model Context Protocol.
- Fill in the server name, description, and
https://mcp.docs2mcp.com/mcpas the server URL. - Choose OAuth 2.0, then Dynamic discovery, and select Create.
- Select Next, then Create a new connection, and choose Allow.
- Select Add to agent.
Any other client
-
Add a remote MCP server over HTTP and paste
https://mcp.docs2mcp.com/mcp. Clients call this a custom connector, a remote server, or Streamable HTTP. -
If your client only accepts a command to run, it speaks stdio. Bridge it:
npx -y mcp-remote https://mcp.docs2mcp.com/mcp -
Choose Allow in the browser it opens.
Which of these have been run end to end
Claude Desktop, Claude Code and Cursor were proven against the live product.
Claude web, VS Code, ChatGPT, Perplexity, Gemini CLI, Codex CLI and Copilot Studio were written from each vendor's own documentation and have not been run end to end here.
Settings screens and CLI flags move faster than this file does. If a step is wrong, please open an issue — wrong instructions are worse than absent ones.
Troubleshooting
The client says it cannot reach the server. Check the URL ends in /mcp.
You approved access but the library is empty. You approved from a different browser than the one you uploaded from. Sign in to app.docs2mcp.com first, then approve again.
The client asks for a client id and secret. It should not. docs2mcp supports dynamic client registration. Leave both empty.
A tool call returns a quota error. Check your plan and usage at app.docs2mcp.com.
Support and issues
Open an issue in this repository for anything about connecting: a step that has gone stale, a client that is not listed, or documentation that is wrong.
For account, billing or data questions, use the contact routes at docs2mcp.com.
License
The contents of this repository are MIT licensed. The docs2mcp service itself is commercial; see docs2mcp.com/terms/.
Reviews
No reviews yet
Be the first to review this server!
More Developer Tools MCP Servers
Paperclip
Freeby Paperclipai · Developer Tools
Trending hip-hop artist momentum scores across four cultural dimensions.
Git
Freeby Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
Toleno
Freeby Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
mcp-creator-python
Freeby mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.
MCP Marketplace
Freeby mcp-marketplace · Developer Tools
Search and install MCP servers from inside your AI client.
MarkItDown
Freeby Microsoft · Content & Media
Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption
