MCP Server Builder
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_mcp_docsA | Search MCP protocol AND FastMCP framework documentation with ranked results. This tool searches across both documentation sources simultaneously: MCP Protocol (modelcontextprotocol.io):
FastMCP Framework (gofastmcp.com):
Use this to find documentation for building MCP servers with either approach. Args: query: Search query string (e.g., "tool input schema", "stdio transport") k: Maximum number of results to return (default: 5) source: Optional filter - "mcp" for protocol docs only, "fastmcp" for framework docs only. If None, searches both sources. Returns: List of dictionaries containing: - url: Document URL - title: Display title - score: Relevance score (higher is better) - snippet: Contextual content preview - source: Documentation source ("mcp" or "fastmcp") |
| fetch_mcp_docA | Fetch full document content by URL from MCP protocol or FastMCP framework docs. Retrieves complete documentation content from URLs found via search_mcp_docs or provided directly. Works with both documentation sources: Supported domains:
Use this to get full documentation pages when search snippets aren't sufficient, including:
Args: uri: Document URI (http/https URLs from supported domains) Returns: Dictionary containing: - url: Canonical document URL - title: Document title - content: Full document text content - source: Documentation source ("mcp" or "fastmcp") - error: Error message (only present 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 | |
TDQS
Scored across 2 tools
The two tools have clearly distinct purposes: search returns ranked snippets, fetch retrieves full document content. No overlap in functionality.
Both tools follow a consistent verb_noun pattern ('search_mcp_docs', 'fetch_mcp_doc'), making them predictable and easy to understand.
With only two tools, the server is lean but covers the core documentation retrieval workflow (search and fetch). The name 'MCP Server Builder' might imply broader functionality, but the tool set is appropriate for a focused documentation assistant.
The two tools cover the essential search and retrieve cycle for MCP documentation. A minor gap is the lack of a tool to list available documentation sections or browse structure, but the current set is functional with no dead ends.