Official MCP server for esa.io - a documentation sharing service for teams
Runs locally over stdio
This server isn't hosted — your MCP client launches it from a package registry. Use one of the commands below, or drop the config into your client (e.g. Claude Desktop).
Run
npx -y @esaio/esa-mcp-server
MCP client config
{
"mcpServers": {
"esa": {
"command": "npx",
"args": [
"-y",
"@esaio/esa-mcp-server"
]
}
}
}Run
docker run -i --rm ghcr.io/esaio/esa-mcp-server:0.13.0
MCP client config
{
"mcpServers": {
"esa": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/esaio/esa-mcp-server:0.13.0"
]
}
}
}