ats-fill-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| CDP_URL | Yes | The URL of the Chrome DevTools Protocol endpoint (e.g., http://127.0.0.1:9222). Used to connect to the already-logged-in Chrome browser. |
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 |
|---|---|
| navigateB | 打开/聚焦目标网申页面并注入执行引擎,返回页面标题与控件数。 |
| inspect_formA | 采集当前(或给定 url)网申表单结构:带 msg 语义的字段清单、当前值、下拉选项、可用的“添加更多”按钮。用于 Agent 语义规划。 |
| fill_formA | 按 ops 批量执行填写/纠错。支持 text/date/select/radio/check/cascade/addRow;控件用 id/name/msg 寻址。返回每项成功与否与回读值。 |
| verify_formA | 回读指定 msg 字段当前真实值,用于填写后校验。传 ["*"] 可返回全部。 |
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 4 tools
Each tool targets a distinct phase: navigate opens the page, inspect_form reads structure, fill_form writes values, and verify_form confirms results. There is no meaningful overlap between their responsibilities.
Three tools follow a clear verb_noun pattern (inspect_form, fill_form, verify_form), while navigate is a bare verb. The imperative style is consistent, but the missing _form suffix is a minor deviation.
Four tools cover the full form-filling workflow without redundancy. The count is appropriate for the server's focused purpose.
The set forms a complete lifecycle: navigate to the page, inspect structure, fill or update values, and verify results. No obvious operations are missing for the stated ATS form-filling domain.