Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_mcp_docs | Search MCP protocol and FastMCP documentation with ranked results. This tool provides access to comprehensive MCP documentation including: MCP Protocol:
FastMCP Framework:
Use this to find relevant MCP documentation for building MCP servers. Args: query: Search query string (e.g., "tool input schema", "stdio transport") k: Maximum number of results to return (default: 5) Returns: List of dictionaries containing: - url: Document URL - title: Display title - score: Relevance score (higher is better) - snippet: Contextual content preview |
| fetch_mcp_doc | Fetch full document content by URL. Retrieves complete MCP or FastMCP documentation content from URLs found via search_mcp_docs or provided directly. Use this to get full documentation pages including:
This provides the full content when search snippets aren't sufficient for understanding or implementing MCP features. Args: uri: Document URI (supports http/https URLs) Returns: Dictionary containing: - url: Canonical document URL - title: Document title - content: Full document text content - error: Error message (if fetch failed) |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |