yellow-pages
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| YELLOW_PAGES_TRANSPORT | No | Transport mode ('stdio' or 'streamable-http'). Default: stdio | stdio |
| YELLOW_PAGES_CHROMA_DIR | No | Chroma vector DB directory. Default: ./chroma_db_agent_tools_v9 | ./chroma_db_agent_tools_v9 |
| YELLOW_PAGES_SCHEMA_PATH | No | OpenAPI schema file (JSON or YAML). Default: ./sample_schema.json | ./sample_schema.json |
| YELLOW_PAGES_EMBEDDING_MODEL | No | HuggingFace/sentence-transformers model name. Default: sentence-transformers/all-MiniLM-L6-v2 | sentence-transformers/all-MiniLM-L6-v2 |
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": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| discover_operationsA | |
| execute_operationA | |
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 roles: discover_operations is for discovery only, while execute_operation is for execution. There is no overlap, and the dependency between them is explicit and unambiguous.
Both tool names follow the consistent verb_noun pattern: 'discover_operations' and 'execute_operation'. The naming is clean, predictable, and uses the same style throughout.
The server has only two tools, which is slightly below the typical 3-15 range, but it is justified by the narrow scope of the server: discovering and executing operations. Each tool is essential and the pair is sufficient for the stated purpose.
For a generic API executor, the two-step lifecycle of discover then execute is fully covered. The discover tool provides enough information (operation name, method, URL, parameters) to call execute_operation without any obvious gaps.