my-docs-mcp

jbouder/my-docs-mcp

3.1

If you are the rightful owner of my-docs-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

My Docs MCP provides a simple set of tools that can be used to provide specific markdown docs to your AI code assisted environment.

My Docs MCP

My Docs MCP provides a simple set of tools that can be used to provide specific markdown docs to your AI code assisted environment.

Getting Started

Add the following to your mcp.json to connect VS Code Copilot to the MCP server:

Workspace Configuration (Recommended)

{
  "servers": {
    "my-docs-mcp": {
      "command": "npx",
      "args": ["@jbouder/my-docs-mcp"]
    }
  }
}

Available Tools

ToolDescriptionParameters

Running the Project Locally

The MCP server is built using the official TypeScript MCP SDK and follows the existing project structure and patterns.

Build the Server

npm run build

Configuring MCP Client for your server

{
  "mcpServers": {
    "my-docs-mcp": {
      "command": "node",
      "args": ["/ABSOLUTE/PATH/TO/YOUR/PROJECT/my-docs-mcp/dist/index.js"]
    }
  }
}