MCP Chat
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| ANTHROPIC_API_KEY | Yes | Your Anthropic API secret key |
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 |
|---|---|
| add_intsC | Add to integers together |
| read_doc_contentsA | Read the contents of a document and return it as a string |
| edit_doc_contentsB | Edit a document by replacing a string in the documents content with the new string |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| format | Rewrites the contents of the document in markdown format |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| list_docs |
TDQS
Scored across 3 tools
Each tool has a clearly distinct purpose: integer addition, document reading, and document editing. Even the two document tools are unambiguous because one reads content and the other modifies it.
All tool names follow a consistent verb_noun snake_case pattern: add_ints, read_doc_contents, edit_doc_contents. This creates a predictable and readable naming convention.
The server is named 'MCP Chat' but contains only three tools unrelated to chat (math and document editing). The count is small and the set feels arbitrary and under-scoped for the stated purpose.
The tool set is severely incomplete for a chat server—no messaging or chat-related operations exist. Even within the included domains, there are omissions: document tools lack create/delete, and the math tool only supports addition.