entry
Pack: devdocs-io · Endpoint: https://gateway.pipeworx.io/devdocs-io/mcp
Single entry HTML.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
slug | string | yes | |
path | string | yes |
Example call
Arguments
{
"slug": "javascript",
"path": "array/map"
}
curl
curl -X POST https://gateway.pipeworx.io/devdocs-io/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"entry","arguments":{"slug":"javascript","path":"array/map"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('entry', {
"slug": "javascript",
"path": "array/map"
});
More examples
{
"slug": "react",
"path": "hooks/usestate"
}
Response shape
Always returns: slug, path, html
| Field | Type | Description |
|---|---|---|
slug | string | Documentation slug identifier |
path | string | Entry path identifier |
html | string | HTML content of the entry |
Full JSON Schema
{
"type": "object",
"properties": {
"slug": {
"type": "string",
"description": "Documentation slug identifier"
},
"path": {
"type": "string",
"description": "Entry path identifier"
},
"html": {
"type": "string",
"description": "HTML content of the entry"
}
},
"required": [
"slug",
"path",
"html"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"devdocs-io": {
"url": "https://gateway.pipeworx.io/devdocs-io/mcp"
}
}
}
See Getting Started for client-specific install steps.