Skip to main content
Maestro provides a hosted MCP (Model Context Protocol) server that allows AI applications to search and access Maestro documentation programmatically.

Overview

The MCP server enables AI assistants like Claude Code to search Maestro’s knowledge base for documentation, code examples, API references, and guides directly from their interfaces.
MCP is an open protocol developed by Anthropic for connecting AI applications to external data sources and tools.

Server Details

url
string
required
Server URL: https://docs.runmaestro.ai/mcp
protocol
string
Protocol: Model Context Protocol (MCP)

Available Tools

SearchMaestro

Search the Maestro knowledge base for documentation, code examples, API references, and guides.
query
string
required
Search query for finding relevant documentation
results
array
Array of matching documentation pages
title
string
Page title
content
string
Page content snippet
url
string
Full URL to the documentation page

Setup with Claude Desktop

Connect Maestro’s MCP server to Claude Desktop or Claude Code:
1

Open Claude configuration

Edit your Claude Desktop configuration file:
  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
2

Add Maestro MCP server

Add the Maestro server to your mcpServers configuration:
{
  "mcpServers": {
    "maestro": {
      "url": "https://docs.runmaestro.ai/mcp"
    }
  }
}
3

Restart Claude Desktop

Close and reopen Claude Desktop to load the new configuration.
4

Verify connection

In Claude, you should see the Maestro tool available. Try asking:
“Search Maestro documentation for keyboard shortcuts”

Usage Examples

{
  "tool": "SearchMaestro",
  "arguments": {
    "query": "how to create a new agent"
  }
}

Use Cases

AI Assistant Integration

Enable Claude Code or other AI assistants to reference Maestro documentation while helping you code

Documentation Search

Programmatically search Maestro’s knowledge base from your own tools

Context Enhancement

Provide AI models with up-to-date Maestro documentation context

Automated Workflows

Build automation scripts that query Maestro documentation
The MCP server is publicly accessible and does not require authentication. Rate limiting may apply to prevent abuse.

Build docs developers (and LLMs) love