index

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

Index of entries inside a doc.

Parameters

NameTypeRequiredDescription
slugstringyes

Example call

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":"index","arguments":{}}}'

Response shape

Always returns: entries, types

FieldTypeDescription
entriesarrayList of entries in the documentation
typesarrayList of type categories in the documentation
Full JSON Schema
{
  "type": "object",
  "properties": {
    "entries": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Entry name"
          },
          "path": {
            "type": "string",
            "description": "Entry path identifier"
          },
          "type": {
            "type": "string",
            "description": "Entry type category"
          }
        },
        "required": [
          "name",
          "path",
          "type"
        ]
      },
      "description": "List of entries in the documentation"
    },
    "types": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Type category name"
          },
          "count": {
            "type": "number",
            "description": "Number of entries in this type"
          },
          "slug": {
            "type": "string",
            "description": "Type slug identifier"
          }
        },
        "required": [
          "name",
          "count",
          "slug"
        ]
      },
      "description": "List of type categories in the documentation"
    }
  },
  "required": [
    "entries",
    "types"
  ]
}

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 May 21, 2026