everything vs go-mcp-server-mds
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | go-mcp-server-mds by Warashi | |
|---|---|---|
| Stars | ★ 85,748 | ★ 1 |
| 30d uses | — | — |
| Score | 77 | 28 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | File SystemDeveloper ToolsKnowledge Graph |
| Language | TypeScript | Go |
| Last commit | this month | 13 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
go-mcp-server-mds · Summary
Go-based MCP server serving markdown files with frontmatter support from filesystem.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
go-mcp-server-mds · Use cases
- Exposing documentation repositories to AI assistants via MCP
- Creating a knowledge base from markdown files with structured metadata
- Integrating markdown documentation into AI workflows
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythinggo-mcp-server-mds · Install
Installation
Command Line Tool
go install github.com/Warashi/go-mcp-server-mds/cmd/mcp-server-mds@latestUsage
mcp-server-mds -path /path/to/markdown/filesClaude Desktop Configuration
Add to Claude Desktop config.json:
{
"mcpServers": {
"markdown": {
"command": "mcp-server-mds",
"args": ["-path", "/path/to/markdown"]
}
}
}