@annguyen209/mantis-mcp-server
v1.0.1
Published
Standalone MCP server for MantisBT REST API endpoints
Maintainers
Readme
@annguyen209/mantis-mcp-server (npm package)
Standalone MCP server for MantisBT REST API endpoints.
Install
npm install -g @annguyen209/mantis-mcp-serveror run directly via npx (recommended):
npx -y @annguyen209/mantis-mcp-serverConfiguration
Set the following env variables to point at your Mantis instance:
MANTIS_BASE_URL(e.g.https://mantis.example.com/api/rest)MANTIS_USE_INDEX_PHP(truewhen Mantis is served without URL rewrite)MANTIS_API_TOKEN(create under My Account → API Tokens in Mantis)
Example:
export MANTIS_BASE_URL=https://mantis.example.com/api/rest
export MANTIS_USE_INDEX_PHP=true
export MANTIS_API_TOKEN=YOUR_REAL_TOKEN_HEREExample VS Code MCP configuration
{
"mcpServers": {
"mantis-rest": {
"command": "npx",
"args": ["-y", "@annguyen209/mantis-mcp-server@latest"],
"env": {
"MANTIS_BASE_URL": "https://mantis.example.com/api/rest",
"MANTIS_USE_INDEX_PHP": "true",
"MANTIS_API_TOKEN": "YOUR_REAL_TOKEN_HERE"
}
}
}
}Running
mantis-mcp-serverThe server speaks MCP over stdio and exposes Mantis REST endpoints via tools.
For full developer documentation and local development setup, see the repository README (README.md).
