Skip to main content
Glama
manticoresoftware

Manticore Search MCP

Official

list_documentation

Filter and retrieve Manticore Search documentation files using regex patterns to efficiently find multiple topics in a single call.

Instructions

List available documentation files from Manticore Search manual.

IMPORTANT: Make ONE call with regex OR patterns to find multiple topics at once. DO NOT make multiple calls - use pipe (|) to combine patterns.

The file list is cached, so filtering is instant and local.

Args: search: Regex pattern to filter files (case-insensitive). Use OR patterns (|) to match multiple topics in ONE call:

    EFFICIENT (single call):
    - "knn|vector|embedding" - find all vector-related docs
    - "search|query|match" - find all search-related docs
    - "^Searching/|^Creating_a_table/" - multiple directories
    - "index|table|cluster" - multiple topics

    INEFFICIENT (avoid multiple calls):
    - Don't: list_documentation("knn"), then list_documentation("vector")
    - Do: list_documentation("knn|vector")  # ONE call

Returns: Filtered list of documentation files, grouped by category

Examples: # List all documentation (no filter) list_documentation()

# Find multiple topics in ONE call (RECOMMENDED)
list_documentation(search="knn|vector|embedding")
list_documentation(search="search|query|match|full-text")
list_documentation(search="index|table|cluster|replication")

# Directory-specific searches
list_documentation(search="^Searching/")  # all in Searching/
list_documentation(search="^Creating_a_table/")  # all in Creating_a_table/

# Combine directories and topics
list_documentation(search="^Searching/|^Creating_a_table/")

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
searchNo

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/manticoresoftware/mcp-manticore'

If you have feedback or need assistance with the MCP directory API, please join our Discord server