PageIndex Light MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| PAGEINDEX_LLM_MODEL | No | Model name for LLM fallback | |
| PAGEINDEX_OCR_MODEL | No | Model name for OCR fallback (vision-capable) | |
| PAGEINDEX_LLM_API_KEY | No | API key for LLM fallback | |
| PAGEINDEX_OCR_API_KEY | No | API key for OCR fallback | |
| PAGEINDEX_LLM_BASE_URL | No | Base URL for LLM API fallback | |
| PAGEINDEX_OCR_BASE_URL | No | Base URL for OCR fallback |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_detailA | 获取 PDF 某一页的详细内容 Args: file_path: PDF 文件的完整路径 page: 页码(从 1 开始) |
| get_indexA | 获取 PDF 文件索引,支持语义搜索 Args: file_path: PDF 文件的完整路径 query: 搜索查询(可选)。如果提供,返回最相关的页面;否则返回全部索引 top_k: 返回结果数量,默认 5(仅在有 query 时生效) |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 2 tools
The two tools have clearly distinct purposes: one retrieves detailed content for a specific page, the other returns an index with optional semantic search. No overlap or ambiguity exists.
Both tools follow the same 'get_' prefix followed by a noun, perfectly consistent and predictable.
Only two tools exist, which is at the thin end of the range. While appropriate for a 'light' server, the scope is minimal and may feel incomplete for broader PDF workflows.
The core workflow of indexing and retrieving page details is covered. Minor gaps exist such as no explicit metadata retrieval or index update, but these can be worked around.