Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Instruction MCP Serverget our team's code review checklist"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
instruction-mcp
A minimal MCP server that serves markdown instructions as tools.
Why?
LLMs work better with context. Instead of copy-pasting instructions into every conversation, define them once and deliver them to all your LLM applications — Claude Desktop, Claude Code, and any MCP-compatible client.
Use cases:
Team playbooks — Coding standards, review checklists, incident response
Domain knowledge — Data dictionaries, API conventions, business rules
Personal workflows — Analysis templates, writing guides, debugging steps
No UI, no database — just a YAML config and markdown files. Version control your instructions with git, share them across your team.
How It Works
Define tools in
instruction.yamlpointing to markdown filesRun the MCP server
Claude sees your tools and calls them based on conversation context
Tool returns the markdown content
Claude uses the instructions to help with your task
Understanding Tool Behavior
Tool descriptions determine when Claude calls the tool. Claude reads all available tool descriptions and picks the relevant one based on your prompt.
Tool responses are context, not commands. When a tool returns markdown, it's added to the conversation like any other text. Claude doesn't automatically "follow" it — your prompt determines that.
Retrieval vs Action
The word "following" makes Claude apply the instructions rather than just report them.
Being Explicit
For guaranteed results, name the tool directly:
This ensures:
The tool is called (no relying on description matching)
The instructions are followed (not just retrieved)
Quick Start
1. Create your config
2. Add your markdown files
3. Validate
4. Add to Claude Desktop
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
5. Use in Claude
"Review this PR for me"
Claude will call get_coding_standards and use your team's standards to review the code.
CLI
Config Reference
Field | Type | Required | Description |
| string | yes | Human-readable tool name |
| string | yes | Description for Claude's tool selection |
| string | no | Default instruction key |
| map | yes | Key-value pairs of name: filepath |
Example
See example/ for a complete working setup with analyst playbooks and code review checklists, including Docker deployment.
License
MIT