mcp-devdocs-io
Provides search and retrieval of Angular documentation from DevDocs.io, including API references, guides, and code examples.
Provides search and retrieval of JavaScript documentation from DevDocs.io, including core language features, APIs, and guides.
Provides search and retrieval of Python documentation from DevDocs.io, including standard library references, tutorials, and code examples.
Provides search and retrieval of Rust standard library documentation from DevDocs.io, including API references and guides.
Click on "Deploy 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., "@mcp-devdocs-ioSearch for 'forEach' in JavaScript docs"
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.
@pipeworx/devdocs-io
DevDocs.io MCP — keyless metadata + search of the docs index that powers devdocs.io (Angular, MDN, Node, Python, Rust stdlib, etc.).
Part of Pipeworx — an MCP gateway connecting AI agents to 1576+ live data sources.
Tools
docs()— full docs index (each entry has slug, type, release, attribution, db_size)search_docs(query)— filter the docs index by name/slug substringindex(slug)— index of all entries inside a single doc (e.g.slug="javascript")search_index(slug, query, limit?)— substring-search entries inside a doc; returns name + path + typedb(slug)— content database for a doc (HTML snippets keyed by path; may be large)entry(slug, path)— single entry's content (HTML) from a doctypes(slug)— list categories ("types") inside a doc
Related MCP server: GOV.UK Design System MCP
Data source
https://devdocs.io/docs.json, https://documents.devdocs.io/<slug>/index.json, https://documents.devdocs.io/<slug>/db.json
Quick Start
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"devdocs-io": {
"url": "https://gateway.pipeworx.io/devdocs-io/mcp"
}
}
}What this endpoint actually serves
tools/list at https://gateway.pipeworx.io/devdocs-io/mcp returns the tools in the table
above plus the shared Pipeworx meta-tools — ask_pipeworx,
discover_tools, search_within, remember/recall and the rest of the
gateway-wide set. So the tool count you see is larger than this table: a
single-pack endpoint currently lists roughly 30 shared tools alongside the
pack's own. The connection's initialize response states its exact scope, and
is the authoritative answer for a given day.
This is deliberate, not multiplexing by accident. The meta-tools are what let a
scoped connection answer a question this pack does not cover — via
ask_pipeworx, which routes across the whole catalog — without you adding a
second MCP server. There is currently no way to mount a pack endpoint without
them; if the extra schemas cost you more context than the routing is worth,
connect to the full gateway once rather than to several pack endpoints.
Or connect to the full Pipeworx gateway to get every pack's tools listed directly, instead of just this one's:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}Both URLs reach the same gateway and the same 1576+ data sources. The
only difference is which pack's tools are listed directly; ask_pipeworx
reaches all of them from either one.
No MCP client? Call it over HTTP
curl -X POST https://gateway.pipeworx.io/v1/tools/docs \
-H 'Content-Type: application/json' \
-d '{}'No account needed for the first calls. Inspect any tool: GET https://gateway.pipeworx.io/v1/tools/docs. Find one: POST https://gateway.pipeworx.io/v1/tools/search_packs with {"query":"..."}.
Standalone (no gateway account)
This package also runs as a local stdio MCP server — no Pipeworx account, no gateway round-trip:
{
"mcpServers": {
"devdocs-io": {
"command": "npx",
"args": ["-y", "@pipeworx/mcp-devdocs-io"]
}
}
}Or run it directly to confirm it starts:
npx -y @pipeworx/mcp-devdocs-ioIt speaks MCP over stdin/stdout and answers initialize/tools/list/tools/call
for only this pack's tools — none of the shared meta-tools the gateway
connection above adds. Same source, same tools, no ask_pipeworx routing.
Using with ask_pipeworx
Instead of calling tools directly, you can ask questions in plain English — this works on the pack endpoint above as well as on the full gateway:
ask_pipeworx({ question: "your question about Devdocs Io data" })The gateway picks the right tool and fills the arguments automatically.
More
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Search and read Rust documentation for the standard library and any crate on crates.io
Search Multilo's docs, fetch any public page as clean Markdown, and read the changelog.
Manage Appwrite projects, databases, auth, storage, functions, and messaging; search Appwrite docs
Provides tools for searching Google Workspace documentation and much more.
Related MCP Servers
- FlicenseAqualityCmaintenanceSearch and read React Native documentation offline from the terminal.3-
- FlicenseNot gradedqualityDmaintenanceEnables searching and fetching GOV.UK Design System guidance via locally-crawled SQLite FTS5 data, with tools like search, fetch, and version.-
- AlicenseNot gradedqualityCmaintenanceEnables searching and retrieving Godot documentation pages using fuzzy search, with support for multiple documentation versions.MIT
- FlicenseNot gradedqualityBmaintenanceEnables searching and fetching documentation pages from a wide range of programming languages, frameworks, game engines, and tools. Supports multiple sources and returns relevant documentation snippets.1-