MCP Chat
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| CLAUDE_MODEL | No | Model identifier for the Claude model. | claude-sonnet-4-5 |
| ANTHROPIC_API_KEY | No | Your Anthropic API secret key. Not needed for local mode. | |
| ANTHROPIC_BASE_URL | No | Base URL for the Anthropic API. Used for local proxy. | http://localhost:4000 |
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_contentsC | Read the contents of a doc 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
The two tools have clearly distinct purposes: reading content versus modifying content. An agent can trivially tell them apart with no overlap in intent.
Both names follow a verb_noun pattern (read_doc_contents, edit_document), which is largely consistent. Minor deviation: one uses 'doc' and the other 'document', an inconsistency in noun form.
Two tools is thin for a document-oriented server; it covers only reading and in-place editing. It is borderline minimal but defensible for a tightly scoped use case.
Core read and edit operations exist, but the surface lacks create, delete, append, or list operations, which are common document lifecycle needs. The string-replacement edit also limits editing to exact-match substitutions.