db

Pack: devdocs-io · Endpoint: https://gateway.pipeworx.io/devdocs-io/mcp

Content database for a doc (large).

Parameters

NameTypeRequiredDescription
slugstringyes

Example call

Arguments

{
  "slug": "javascript"
}

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":"db","arguments":{"slug":"javascript"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('db', {
  "slug": "javascript"
});

Response shape

Full JSON Schema
{
  "type": "object",
  "additionalProperties": {
    "type": "string",
    "description": "HTML content for the entry"
  },
  "description": "Content database with entry paths as keys and HTML as values"
}

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.

Regenerated from source · build July 6, 2026