MCP ExplorerExplorer

Mcp Docs Server

@amp-labson 10 months ago
1 MIT
FreeCommunity
AI Systems
MCP-docs-server facilitates connections between MCP clients and the server.

Overview

What is Mcp Docs Server

mcp-docs-server is a server designed to provide documentation and resources for the MCP framework, facilitating seamless integration and usage for developers.

Use cases

Use cases for mcp-docs-server include local development setups, integration with IDEs for enhanced documentation access, and as a resource hub for developers working with the MCP framework.

How to use

To use mcp-docs-server, configure your mcp.json or claude_desktop_config.json with the server URL. You can run the server locally using npx @amp-labs/mcp-docs-server@latest or by building it from source after installing dependencies.

Key features

Key features of mcp-docs-server include HTTP SSE mode for real-time updates, easy local setup with npx, and comprehensive debugging tools through the MCP inspector.

Where to use

mcp-docs-server is primarily used in software development environments where the MCP framework is implemented, particularly for applications that require real-time documentation and resource management.

Content


Connecting to the mcp server from an MCP Client

Add the following in your mcp.json in cursor IDE or claude_desktop_config.json when using Claude desktop.

Note: This server runs in HTTP SSE mode

When using the official hosted mcp server

{
  "mcpServers": {
    "@amp-labs/mcp-docs-server": {
      "url": "https://mcp-docs.withampersand.com/sse" 
    }
  }
}

When running the docs server locally

{
  "mcpServers": {
    "@amp-labs/mcp-docs-server": {
      "url": "http://localhost:3001/sse"
    }
  }
}

Ampersand MCP docs server

Use npx to automatically run the server locally

This will start the server at http://localhost:3001

npx @amp-labs/mcp-docs-server@latest

Building locally

Install dependencies

pnpm i

Build the MCP SSE server

pnpm build

Start the server

pnpm start

Debugging & troubleshooting

Use the MCP inspector tool to know more about the mcp server and debug tools, prompts, resources

pnpm inspect

Tools

No tools

Comments

Recommend MCP Servers

View All MCP Servers