simple-qqdocs-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| ALL_PROXY | No | Proxy setting to avoid errors | |
| CDP_ENDPOINT | No | Browser CDP endpoint | http://127.0.0.1:9222 |
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
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| refresh_grid_boundariesB | 识别并刷新表格 canvas 坐标边界缓存(列标 ABCD、行标 1234) |
| get_cell_boundsA | 【默认】获取单元格边界(每次重新识别网格)。单格 A1 返回 [[x1,x2],[y1,y2]];范围 A1C2 或 A1:C2 返回 [[x1,x2,...],[y1,y2,...]] |
| quick_get_cell_boundsA | 【仅用户明确要求 quick/快速时】使用缓存坐标获取单元格边界,不重新识别网格 |
| click_cellA | 【默认】识别单元格位置并点击(每次重新识别网格) |
| quick_click_cellA | 【仅用户明确要求 quick/快速时】使用缓存坐标点击单元格,不重新识别网格 |
| input_cellA | 【默认】点击单元格并输入文本(每次重新识别网格) |
| quick_input_cellA | 【仅用户明确要求 quick/快速时】使用缓存坐标点击并输入,不重新识别网格 |
| get_canvas_snapshotA | 获取 .excel-container>canvas 截图(base64 PNG) |
| detect_gridB | 基础:识别行标/列标区域与 ABCD、1234 边界 |
| recognize_cell_textB | 基础:识别单元格文字,返回 {text,bcolor,fcolor}(背景/反色不敏感) |
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 10 tools
Each tool has a clearly distinct purpose, with base tools and quick variants explicitly conditioned on user request. The descriptions precisely differentiate when to use each, eliminating ambiguity.
All tool names follow a consistent verb_noun pattern in snake_case, with a uniform 'quick_' prefix for cached variants. No mixing of conventions.
10 tools is well-scoped for interacting with a spreadsheet grid, covering detection, clicking, input, bounds, text recognition, and snapshot. Not too few nor too many.
Covers core cell operations (click, input, read text, grid detection) but lacks tools for range selection, formatting, or formula editing. Minor gap, but the set is functional for basic tasks.