MCP Agents
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
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
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_dev_agentB | Get information about the Development Agent |
| get_qa_agentB | Get information about the Quality Assurance Agent |
| get_po_agentB | Get information about the Product Owner Agent |
| list_all_agentsB | List all available agents with their basic information |
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 has a clearly distinct purpose: three tools retrieve information about specific agents (Development, Product Owner, Quality Assurance), while the fourth lists all agents. There is no overlap or ambiguity between these functions.
All tool names follow a consistent verb_noun pattern: 'get_dev_agent', 'get_po_agent', 'get_qa_agent', and 'list_all_agents'. The verbs 'get' and 'list' are appropriately used and maintain a predictable naming convention throughout.
With 4 tools, the count is reasonable for managing agent information, though it might feel slightly thin if more operations (e.g., create, update, delete agents) were expected. However, for a read-only information retrieval server, it is well-scoped.
The tool surface covers read operations (get and list) for agents, which is appropriate for an information retrieval purpose. However, there are notable gaps if the domain implies management capabilities, such as creating, updating, or deleting agents, which are missing.