Manticore Search MCP Server
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"manticore-search": {
"env": {
"MANTICORE_URL": "http://localhost:9308",
"MAX_RESULTS_PER_QUERY": "50"
},
"args": [],
"command": "/path/to/manticore-mcp-server"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server that provides access to Manticore Search functionality through MCP-compatible clients like Claude Code, Cursor, and other AI development tools.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in data / search
Web and local search using Brave Search API
Query and manage PostgreSQL databases directly from AI assistants
Production ready MCP server with real-time search, extract, map & crawl.
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
MCP Security Weekly
Get CVE alerts and security updates for Manticore Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that provides access to Manticore Search functionality through MCP-compatible clients like Claude Code, Cursor, and other AI development tools.
git clone https://github.com/krajcik/manticore-mcp-server.git
cd manticore-mcp-server
go build -o manticore-mcp-server
Configure using environment variables:
export MANTICORE_URL="http://localhost:9308"
export MAX_RESULTS_PER_QUERY="100"
export REQUEST_TIMEOUT="30s"
export DEBUG="false"
Or command-line flags:
./manticore-mcp-server --manticore-url="http://localhost:9308" --max-results=100
Add to your MCP client configuration (e.g., ~/.claude.json for Claude Code):
{
"mcpServers": {
"manticore-search": {
"command": "/path/to/manticore-mcp-server",
"args": [],
"env": {
"MANTICORE_URL": "http://localhost:9308",
"MAX_RESULTS_PER_QUERY": "50"
}
}
}
}
The MCP protocol automatically exposes these tools to clients:
Full-text search in Manticore indexes.
Key Parameters:
table (required): Table namequery: Search textlimit: Max resultshighlight: Enable result highlightingbool_query: Complex boolean queriesList available tables/indexes.
Get table schema information.
Parameters:
table (required): Table nameInsert document into index.
Parameters:
table (required): Table namedocument (required): Document dataUpdate an existing document by id (attributes) with optional additional condition.
Parameters:
table (required)id (required)document (required): fields to updatecondition (optional)Delete documents by id or condition.
Parameters:
table (required)id or condition (one required)Display cluster health status.
Cluster management operations (use with caution in production).
All tools return structured JSON:
{
"success": true,
"data": { /* results */ },
"meta": {
"total": 42,
"count": 10,
"operation": "search"
}
}
MCP clients automatically discover available tools and their schemas through the protocol. No manual configuration required.
Connection Issues:
curl http://localhost:9308--debug for verbose logging/search).Performance:
MAX_RESULTS_PER_QUERY for your needsREQUEST_TIMEOUT for complex queriesMIT License