Manticore Search MCP Server

MCP server for Manticore Search — lets AI assistants query and manage search databases.

Local serverstdio

What is the Manticore Search MCP server?

Connect Manticore Search to Claude, Cursor or any other MCP client and it stops being a tab you switch to. MCP server for Manticore Search — lets AI assistants query and manage search databases. The manticore search mcp server is what makes that connection.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • 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
  • Installation — The Installation tool exposed by this server
  • Tools — The Tools tool exposed by this server
  • Prompts — The Prompts tool exposed by this server
  • Safety — The Safety tool exposed by this server
  • Architecture — The Architecture tool exposed by this server

Installation

mcp-manticore on PyPI is all you need. Most clients run it directly, so configuration is a few lines and a restart.

Credentials and setup notes

Configuration is passed through the environment: MANTICORE_HOST, MANTICORE_PORT, MANTICORE_ALLOW_WRITE_ACCESS, MANTICORE_ALLOW_DROP, MANTICORE_MCP_SERVER_TRANSPORT, MANTICORE_MCP_BIND_PORT, MANTICORE_MCP_AUTH_TOKEN, GITHUB_TOKEN. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Where it fits

Among the knowledge and memory options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Manticore Search's toolset — run_query, list_tables, describe_table and 7 more — is a fair guide to whether it matches your workflow. It is maintained by manticoresoftware; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 10 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Manticore Search.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
run_queryExecute SQL queries (SELECT, SHOW, DESCRIBE, etc.)
list_tablesList all tables and indexes
describe_tableGet table schema
list_documentationList available documentation files
get_documentationFetch specific documentation from Manticore manual
InstallationThe Installation tool exposed by this server.
ToolsThe Tools tool exposed by this server.
PromptsThe Prompts tool exposed by this server.
SafetyThe Safety tool exposed by this server.
ArchitectureThe Architecture tool exposed by this server.

How to install the Manticore Search MCP server

{
  "mcpServers": {
    "manticore": {
      "command": "uvx",
      "args": ["mcp-manticore"],
      "env": {
        "MANTICORE_HOST": "localhost",
        "MANTICORE_PORT": "9308"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
MANTICORE_HOSTEndpoint or connection string the server talks to.Optional
MANTICORE_PORTConfiguration value read at startup.Optional
MANTICORE_ALLOW_WRITE_ACCESSConfiguration value read at startup.Optional
MANTICORE_ALLOW_DROPConfiguration value read at startup.Optional
MANTICORE_MCP_SERVER_TRANSPORTConfiguration value read at startup.Optional
MANTICORE_MCP_BIND_PORTConfiguration value read at startup.Optional
MANTICORE_MCP_AUTH_TOKENCredential the server authenticates with.Yes
GITHUB_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use Manticore Search to run query.
  • Use Manticore Search to list tables.
  • Use Manticore Search to describe table.

Frequently asked questions

It connects Manticore Search to MCP-compatible AI assistants such as Claude and Cursor, exposing 10 tools (run_query, list_tables, describe_table, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Manticore Search directly.