Mcp Manticore — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Mcp Manticore (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
MCP server for Manticore Search — enables AI assistants to query and manage Manticore Search databases directly.
# Option 1: Install with uv (recommended, requires PyPI release)
uvx mcp-manticore
# Option 2: Install with pip
pip install mcp-manticore
# Option 3: Run from source (for local development)
uvx --from . mcp-manticore
# Or: uv run mcp-manticoreNote: -uvxruns the package directly without installation. First-time run may take a moment to download dependencies. - The package must be published to PyPI foruvx mcp-manticoreto work. - For local development or testing unreleased versions, useuvx --from . mcp-manticore
| Tool | Description |
|---|---|
run_query | Execute SQL queries (SELECT, SHOW, DESCRIBE, etc.) |
list_tables | List all tables and indexes |
describe_table | Get table schema |
list_documentation | List available documentation files |
get_documentation | Fetch specific documentation from Manticore manual |
manticore_initial_prompt — Built-in prompt teaching LLMs about Manticore Search features (full-text operators, KNN vector search, fuzzy search, etc.)HTTP endpoint at /health for monitoring connectivity.
| Variable | Default | Description |
|---|---|---|
MANTICORE_HOST | localhost | Manticore server host |
MANTICORE_PORT | 9308 | HTTP API port |
MANTICORE_USER | — | Username (optional) |
MANTICORE_PASSWORD | — | Password (optional) |
MANTICORE_CONNECT_TIMEOUT | 30 | Connection timeout (seconds) |
MANTICORE_QUERY_TIMEOUT | 30 | Query timeout (seconds) |
MANTICORE_ALLOW_WRITE_ACCESS | false | Enable write operations (INSERT, UPDATE, DELETE) |
MANTICORE_ALLOW_DROP | false | Enable destructive operations (DROP, TRUNCATE) |
GITHUB_TOKEN | — | GitHub token for higher API rate limit |
#### Safety
By default, all write operations are blocked. To enable:
# Enable writes (INSERT, UPDATE, DELETE)
export MANTICORE_ALLOW_WRITE_ACCESS=true
# Enable destructive operations (DROP, TRUNCATE)
export MANTICORE_ALLOW_DROP=true<details> <summary><strong>Claude Code</strong></summary>
Open terminal and run:
claude mcp add manticore -- uvx mcp-manticoreOr with environment variables:
claude mcp add manticore -- uvx mcp-manticore -- \
MANTICORE_HOST=localhost \
MANTICORE_PORT=9308For full configuration, edit ~/.claude/mcp_settings.json:
{
"mcpServers": {
"manticore": {
"command": "uvx",
"args": ["mcp-manticore"],
"env": {
"MANTICORE_HOST": "localhost",
"MANTICORE_PORT": "9308"
}
}
}
}Restart Claude Code or type /mcp restart to apply changes.
</details>
<details> <summary><strong>Cursor</strong></summary>
Method 1: Via Settings UI
manticoreuvx mcp-manticoreMethod 2: Via Config File
Global config (~/.cursor/mcp.json):
{
"mcpServers": {
"manticore": {
"command": "uvx",
"args": ["mcp-manticore"],
"env": {
"MANTICORE_HOST": "localhost",
"MANTICORE_PORT": "9308"
}
}
}
}Project config (.cursor/mcp.json in your project):
{
"mcpServers": {
"manticore": {
"command": "uvx",
"args": ["mcp-manticore"]
}
}
}</details>
<details> <summary><strong>Windsurf</strong></summary>
Method 1: Via Cascade UI
uvx mcp-manticoreMethod 2: Via Config File
Edit ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"manticore": {
"command": "uvx",
"args": ["mcp-manticore"],
"env": {
"MANTICORE_HOST": "localhost",
"MANTICORE_PORT": "9308"
}
}
}
}Or open directly in Windsurf: Cmd/Ctrl + Shift + P → "MCP Configuration Panel"
</details>
<details> <summary><strong>OpenAI Codex</strong></summary>
Run in terminal:
codex mcp add manticore -- uvx mcp-manticoreWith environment variables:
codex mcp add manticore \
--env MANTICORE_HOST=localhost \
--env MANTICORE_PORT=9308 \
-- uvx mcp-manticoreOr edit ~/.codex/config.toml directly:
[mcp_servers.manticore]
command = "uvx"
args = ["mcp-manticore"]
env = { MANTICORE_HOST = "localhost", MANTICORE_PORT = "9308" }</details>
<details> <summary><strong>Gemini CLI</strong></summary>
Edit ~/.gemini/settings.json:
{
"mcpServers": {
"manticore": {
"command": "uvx",
"args": ["mcp-manticore"],
"env": {
"MANTICORE_HOST": "localhost",
"MANTICORE_PORT": "9308"
}
}
}
}</details>
<details> <summary><strong>VS Code (GitHub Copilot)</strong></summary>
Create .vscode/mcp.json in your workspace:
{
"servers": {
"manticore": {
"type": "stdio",
"command": "uvx",
"args": ["mcp-manticore"],
"env": {
"MANTICORE_HOST": "localhost",
"MANTICORE_PORT": "9308"
}
}
}
}</details>
<details> <summary><strong>Cline</strong></summary>
manticoreuvx mcp-manticoreOr edit the MCP settings file directly (accessible via the MCP Servers icon → "Edit Config"):
{
"mcpServers": {
"manticore": {
"command": "uvx",
"args": ["mcp-manticore"],
"env": {
"MANTICORE_HOST": "localhost",
"MANTICORE_PORT": "9308"
}
}
}
}</details>
<details> <summary><strong>Roo Code</strong></summary>
Or create .roo/mcp.json in your project root:
{
"mcpServers": {
"manticore": {
"command": "uvx",
"args": ["mcp-manticore"],
"env": {
"MANTICORE_HOST": "localhost",
"MANTICORE_PORT": "9308"
}
}
}
}</details>
<details> <summary><strong>Claude Desktop (Legacy)</strong></summary>
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%/Claude/claude_desktop_config.json (Windows):
{
"mcpServers": {
"manticore": {
"command": "uvx",
"args": ["mcp-manticore"],
"env": {
"MANTICORE_HOST": "localhost",
"MANTICORE_PORT": "9308"
}
}
}
}</details>
By default, MCP uses stdio (local). For remote access:
export MANTICORE_MCP_SERVER_TRANSPORT=http
export MANTICORE_MCP_BIND_PORT=8000
export MANTICORE_MCP_AUTH_TOKEN="your-secure-token"
uvx mcp-manticoreConnect via URL:
{
"mcpServers": {
"manticore": {
"url": "http://localhost:8000/mcp",
"headers": {
"Authorization": "Bearer your-secure-token"
}
}
}
}macOS / Linux:
# Via installer script (recommended)
curl -LsSf https://astral.sh/uv/install.sh | sh
# Or via Homebrew
brew install uvWindows:
# Via PowerShell
irm https://astral.sh/uv/install.ps1 | iex
# Or via winget
winget install astral-sh.uvVerify installation:
uv --versioncurl http://localhost:9308/health/mcp restartSome agents limit active MCP tools. Remove unused servers or use project-scoped configs.
# Clone and setup
git clone https://github.com/manticoresoftware/mcp-manticore.git
cd mcp-manticore
# Install dependencies
uv sync
# Run locally
uv run mcp-manticore
# Run with custom config
MANTICORE_HOST=remote-server MANTICORE_PORT=9308 uv run mcp-manticore
# Run tests
uv run pytest
# Build package
uv build
# Publish to PyPI
uv publish| File | Purpose |
|---|---|
mcp_manticore/mcp_env.py | Configuration management |
mcp_manticore/mcp_server.py | MCP server implementation |
mcp_manticore/manticore_prompt.py | LLM guidance/prompts |
mcp_manticore/docs_fetcher.py | GitHub docs fetcher |
mcp_manticore/main.py | CLI entry point |
<!-- Need to add this line for MCP registry publication --> <!-- mcp-name: io.github.manticoresoftware/mcp-manticore -->
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.