A MCP Server for Pagoda
Make venv environment by uv command as below
$ cd mcp-pagoda
$ uv venv
Then, install dependent libraries.
$ uv sync
Add following to your claude_desktop_config.json
.
{
"mcpServers": {
"pagoda": {
"command": "uv",
"args": [
"--directory", "{directory of this local repository}",
"run",
"mcp-server",
"--endpoint", "{Pagoda URL}",
"--token", "{Access token of Pagoda}",
]
}
}
}
Run following command to build docker image
$ docker build -t mcp/pagoda .
Add following to your claude_desktop_config.json
.
{
"mcpServers": {
"pagoda": {
"command": "uv",
"args": [
"--directory", "{Repository PATH}",
"run",
"mcp-server",
"--endpoint", "{Pagoda URL}",
"--token", "{Access token of Pagoda}"
]
}
}
}
{
"mcpServers": {
"pagoda": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"mcp/pagoda",
"--endpoint", "{Pagoda URL}",
"--token", "{Access token of Pagoda}"
]
}
}
}
Use MCP Inspector
$ npx @modelcontextprotocol/inspector uv run mcp-server \
--endpoint "{Pagoda URL}" \
--token "{Access token of Pagoda}"