pysphinx_mcp
Provides tools for browsing, searching, and reading Sphinx documentation sites, allowing AI agents to list pages, read page content, perform full-text search, and list heading structures of documentation pages.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@pysphinx_mcplist all pages in Sphinx docs at https://docs.python.org"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
pysphinx_mcp
MCP server for browsing, searching, and reading Sphinx documentation sites.
Tools
list_pages(base_url): all pages on a docs siteread_page(base_url, page_path): page content as clean textsearch_docs(base_url, query): full-text search via Sphinx search indexlist_sections(base_url, page_path): heading structure (h1-h4) of a pageget_api_signature(base_url, object_path): signature, parameters, and docstring for a class or function
Related MCP server: MCP AI Docs
Install
pip install -U pysphinx_mcpUsage
As an MCP server
Register with any MCP host:
{
"mcpServers": {
"sphinx-docs": {
"command": "python",
"args": ["-m", "pysphinx_mcp"]
}
}
}As a library
Each tool is an async function, import and call from your own code:
from pysphinx_mcp import search_docs, read_page, get_api_signature
async def main():
results = await search_docs(
"https://docs.python.org/3/",
"async await",
)
content = await read_page(
"https://docs.python.org/3/",
"library/asyncio.html",
)
signature = await get_api_signature(
"https://docs.python.org/3/",
"asyncio.gather",
)
Composing with other servers
Import the FastMCP instance for mounting or wrapping:
from pysphinx_mcp import mcp
parent_server.mount(mcp)This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityAmaintenanceA generic, configurable MCP server that makes any MkDocs documentation site searchable and explorable from MCP clients.Last updatedMIT
- Flicense-qualityDmaintenanceAn MCP server that provides indexed, searchable access to Anthropic Claude and Google Gemini documentation, with full-text search, page fetching, and section listing capabilities.Last updated
- Flicense-qualityCmaintenanceMCP server to search and read documentation pages from a WikiJS instance via its GraphQL API.Last updated
- Alicense-qualityCmaintenanceMCP server to access and search adonis-mcp documentation files from GitHub, with tools for listing, searching, and extracting code examples.Last updated513MIT
Related MCP Connectors
MCP server for accessing curated awesome list documentation
MCP server for doc2mcp documentation, generated by doc2mcp.
MCP server for AgentDocs (agentdocs.eu): read, search, write, comment on & share Markdown docs.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/vmphase/pysphinx_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server