← doc.page

INDIVIDUAL MCP TOOL

list_tables

Return every table in a PDF as structured JSON (reconstructed rows and columns) with page and bounding box for verifiable citations.

doc.pagenone authenticationAvailability not checked

LIVE ENDPOINT

https://doc.page/api/mcp

No auth detected

Connect to this endpoint to inspect the live schema for list_tables and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent server

doc.page

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.docpage-extract]
url = "https://doc.page/api/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "docpage-extract": {
      "type": "http",
      "url": "https://doc.page/api/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: docpage-extract
Remote MCP URL: https://doc.page/api/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "docpage-extract": {
      "url": "https://doc.page/api/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "docpage-extract": {
      "type": "http",
      "url": "https://doc.page/api/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "docpage-extract",
  "transport": "streamable-http",
  "url": "https://doc.page/api/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • extract_pdf — Extract a PDF into clean Markdown and structured elements (headings, paragraphs).
  • get_chunks — Split a PDF into semantic chunks ready for embeddings (RAG).
  • create_doc_link — Publish a PDF as a tracked doc.
  • list_doc_links — List the Doc Links of the API key's account (id, slug, URL, name, disabled/expiry state, total views, last view).
  • get_doc_link_stats — Reading analytics for one Doc Link of the API key's account, by id or slug.
  • revoke_doc_link — Disable a Doc Link of the API key's account (by id or slug) so the public URL stops serving.