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 |
|---|---|
| read_doc_contentsA | Read the contents of a document and return it as a string. |
| edit_documentA | Edit a document by replacing a string in the documents content with a 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 2 tools
read_doc_contents and edit_document perform clearly distinct operations: reading versus modifying content. There is no functional overlap between the two tools.
Both names follow a verb_noun snake_case pattern, but 'doc' in read_doc_contents is abbreviated while 'document' is spelled out in edit_document. This is a minor inconsistency rather than a systemic problem.
Two tools is borderline: the set is small but each tool serves a clear purpose. It feels thin for a general document server, though it could be sufficient for a very narrow read/edit-only use case.
The domain appears to be document manipulation, but the surface is missing obvious operations like creating, deleting, listing, or searching documents. Edit is also limited to simple string replacement, which leaves significant workflow gaps.