A CLI host application that enables Large Language Models (LLMs) to interact with external tools through the Model Context Protocol (MCP).
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"mcphost": {
"command": "go",
"args": [
"run",
"github.com/mark3labs/mcphost@latest"
]
}
}
}
Run in terminal:
claude mcp add mcphost go run github.com/mark3labs/mcphost@latest
Add to .cursor/mcp.json:
{
"mcpServers": {
"mcphost": {
"command": "go",
"args": [
"run",
"github.com/mark3labs/mcphost@latest"
]
}
}
}