My Wiki!

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
programming:0_ide:kilocode_vscode [2026/05/12 22:07] – [memvid mcp for vscode] tdprogramming:0_ide:kilocode_vscode [2026/07/09 11:34] (current) – [pdf-reader mcp for vscode] td
Line 163: Line 163:
     "OPENAI_API_KEY": "sk-your-key-here"     "OPENAI_API_KEY": "sk-your-key-here"
 } }
 +### pdf-reader mcp for vscode
  
 +* https://github.com/SylphxAI/pdf-reader-mcp
 +
 +A PDF Reader MCP (Model Context Protocol) server is an integration that allows AI agents and IDEs (like Claude or VS Code) to securely read, search, and extract data from PDF files without token-heavy context dumping. It solves large PDF limitations by converting binary documents into structured, searchable evidence.Advanced implementations like SylphxAI/pdf-reader-mcp go beyond simple text extraction, acting as an "Agent Document Twin." They provide:Evidence-based querying: pinpoint exactly which paragraph, table, or bounding box proves an answer to avoid hallucinations.Vis-mapping: interpret layouts, images, charts, and hidden text through built-in OCR and visual candidate crops.For simpler, text-only extraction workflows, lighter MCP servers are available on the MCP Market, including the mcp-pdf-reader PyPI package and @sylphlab/pdf-reader-mcp. These typically support basic functionalities such as:Opening and closing PDFs using file paths or URLs.Listing metadata (e.g., page counts, title, author, creation dates).Extracting text by full document, page ranges, or specific search queries.
 +
 +     npm install -g @sylphx/pdf-reader-mcp
 +     
 +#### Kilo agent config
 +
 +     .config\kilo\kilo.jsonc
 +     
 +     
 +```JSON
 +
 + "mcp": {
 +    "memvid": {
 +      "type": "local",
 +      "command": [
 +        "cmd",
 +        "/c",
 +        "C:\\devfs\\node-v26.5.0-win-x64\\memvid-mcp-server.cmd"
 +      ],
 +      "environment": {
 +        "OPENAI_API_KEY": "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",
 +        "MEMVID_LOCAL_STORAGE": "1"
 +      },
 +      "enabled": true,
 +      "timeout": 30000
 +    },
 +    "pdf-reader": {
 +      "type": "local",
 +      "command": [
 +        "cmd",
 +        "/c",
 +        "C:\\devfs\\node-v26.5.0-win-x64\\pdf-reader-mcp.cmd"
 +      ],
 +      "arguments": [],
 +      "enabled": true,
 +      "timeout": 30000
 +    }
 +  },
 +
 +
 +```
 +
 +## PDF reader MCP
 +* https://lobehub.com/mcp/gstiebler-pdf-mcp-server

Navigation