dpesch/mantisbt-mcp-server
Mirror of codeberg.org/dpesch/mantisbt-mcp-server — issues and PRs not monitored
Platform-specific configuration:
{
"mcpServers": {
"mantisbt-mcp-server": {
"command": "npx",
"args": [
"-y",
"mantisbt-mcp-server"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
[](https://www.npmjs.com/package/@dpesch/mantisbt-mcp-server) [](LICENSE) [](https://lobehub.com/mcp/dpesch-mantisbt-mcp-server) [](https://glama.ai/mcp/servers/dpesch/mantisbt-mcp-server)
A Model Context Protocol (MCP) server that integrates the MantisBT REST API into Claude Code and other MCP-capable clients. Read, create, and update issues directly from your editor.
Via npx (recommended):
Add to ~/.claude/claude_desktop_config.json (Claude Desktop) or your local claude_desktop_config.json (Claude Code):
{
"mcpServers": {
"mantisbt": {
"command": "npx",
"args": ["-y", "@dpesch/mantisbt-mcp-server"],
"env": {
"MANTIS_BASE_URL": "https://your-mantis.example.com/api/rest",
"MANTIS_API_KEY": "your-api-token"
}
}
}
}Local build:
git clone https://codeberg.org/dpesch/mantisbt-mcp-server
cd mantisbt-mcp-server
npm run init
npm run build{
"mcpServers": {
"mantisbt": {
"command": "node",
"args": ["/path/to/mantisbt-mcp-server/dist/index.js"],
"env": {
"MANTIS_BASE_URL": "https://your-mantis.example.com/api/rest",
"MANTIS_API_KEY": "your-api-token"
}
}
}
}| Variable | Required | Default | Description | |---|---|---|---| | MANTIS_BASE_URL | ✅ | – | Base URL of your M
Loading reviews...