MantisBT MCP Server✓
io.github.dpesch/mantisbt-mcp-server · v1.10.2
v1.10.2▦ npm npm: @dpesch/mantisbt-mcp-server
{}server.json
The full server descriptor as registered with IndusMCP.
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.dpesch/mantisbt-mcp-server",
"description": "MantisBT MCP server – manage issues, notes, files, tags, and relationships. With semantic search.",
"title": "MantisBT MCP Server",
"version": "1.10.2",
"packages": [
{
"registryType": "npm",
"identifier": "@dpesch/mantisbt-mcp-server",
"version": "1.10.2",
"runtimeHint": "npx",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"description": "Base URL of the MantisBT REST API, e.g. https://your-mantis.example.com/api/rest",
"isRequired": true,
"format": "string",
"placeholder": "https://your-mantis.example.com/api/rest",
"name": "MANTIS_BASE_URL"
},
{
"description": "MantisBT API key (Profile → API Tokens in MantisBT)",
"isRequired": true,
"format": "string",
"isSecret": true,
"name": "MANTIS_API_KEY"
},
{
"description": "Directory for the metadata cache. Defaults to ~/.cache/mantisbt-mcp",
"format": "filepath",
"name": "MANTIS_CACHE_DIR"
},
{
"description": "Metadata cache TTL in seconds. Default: 3600 (1 hour)",
"format": "number",
"default": "3600",
"name": "MANTIS_CACHE_TTL"
},
{
"description": "Transport mode. 'stdio' for local use (default), 'http' for remote/team deployments",
"format": "string",
"default": "stdio",
"choices": [
"stdio",
"http"
],
"name": "TRANSPORT"
},
{
"description": "HTTP port when TRANSPORT=http. Default: 3000",
"format": "number",
"default": "3000",
"name": "PORT"
},
{
"description": "Bind address when TRANSPORT=http. Default: 127.0.0.1 (local only). Use 0.0.0.0 for Docker/remote.",
"format": "string",
"default": "127.0.0.1",
"name": "MCP_HTTP_HOST"
},
{
"description": "Optional Bearer token to protect the /mcp endpoint when TRANSPORT=http",
"format": "string",
"isSecret": true,
"name": "MCP_HTTP_TOKEN"
},
{
"description": "Enable offline semantic search (requires ~80 MB model download on first use)",
"format": "boolean",
"default": "false",
"name": "MANTIS_SEARCH_ENABLED"
},
{
"description": "Vector store backend for semantic search. 'vectra' (default, pure JS) or 'sqlite-vec' (faster for >10k issues)",
"format": "string",
"default": "vectra",
"choices": [
"vectra",
"sqlite-vec"
],
"name": "MANTIS_SEARCH_BACKEND"
},
{
"description": "Directory for the semantic search index. Defaults to ~/.cache/mantisbt-mcp/search",
"format": "filepath",
"name": "MANTIS_SEARCH_DIR"
},
{
"description": "Hugging Face model for embeddings. Default: Xenova/paraphrase-multilingual-MiniLM-L12-v2",
"format": "string",
"default": "Xenova/paraphrase-multilingual-MiniLM-L12-v2",
"name": "MANTIS_SEARCH_MODEL"
},
{
"description": "ONNX inference threads for the embedding model. Default: 1",
"format": "number",
"default": "1",
"name": "MANTIS_SEARCH_THREADS"
},
{
"description": "If set, restricts file uploads to this directory (path traversal protection)",
"format": "filepath",
"name": "MANTIS_UPLOAD_DIR"
}
]
}
],
"_meta": {
"dev.indusmcp/source": "official-registry-mirror",
"dev.indusmcp/synced": "2026-05-12"
}
}