Shelby docs MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Shelby docs MCPsearch for how to configure the Shelby CLI"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Shelby docs MCP
A lightweight, read-only MCP server that exposes Shelby documentation as searchable tools for MCP-compatible clients like Claude Code, Codex, Cursor, VS Code, and Gemini CLI.
This project is a docs-only server. It does not write data, talk to Shelby RPC endpoints, or modify anything in the network.
Docs source
The server loads the full Shelby LLM docs bundle:
It parses that bundle into page-level chunks using the native Shelby format:
# Page Title (/path)
Page content...
# Next Page (/next-path)
Next page content...Quickstart for Claude Code
Add the MCP server with npx:
claude mcp add --transport stdio shelby-docs -- npx -y github:Jr-kenny/shelby-mcpThen start Claude Code:
claudeInside Claude Code, run:
/mcpYou should see the shelby-docs server and its tool endpoints listed.
Quickstart for Cursor (per-project)
Create .cursor/mcp.json and add:
{
"mcpServers": {
"shelby-docs": {
"command": "npx",
"args": ["-y", "github:Jr-kenny/shelby-mcp"]
}
}
}If Cursor does not recognizemcpServers in your version, try mcp_servers as the top-level key instead.
Quickstart for VS Code (per-workspace)
Add this to .vscode/mcp.json:
{
"servers": {
"shelby-docs": {
"type": "stdio",
"command": "npx",
"args": ["-y", "github:Jr-kenny/shelby-mcp"]
}
},
"inputs": []
}Quickstart for Gemini CLI
Add the MCP server globally:
gemini mcp add --scope user shelby-docs npx -y github:Jr-kenny/shelby-mcpConfirm it is registered:
gemini mcp listQuickstart for Codex
Add the MCP server with the Codex CLI:
codex mcp add shelby-docs -- npx -y github:Jr-kenny/shelby-mcpConfirm it is registered:
codex mcp listAlternatively, add this to your Codex MCP config:
[mcp_servers.shelby-docs]
command = "npx"
args = ["-y", "github:Jr-kenny/shelby-mcp"]Then restart Codex if needed so it reloads the MCP config.
Quickstart from source
If you want to run the repository locally from source:
Clone the repo:
git clone https://github.com/Jr-kenny/shelby-mcp cd shelby-mcpInstall dependencies and build:
npm install npm run buildRun the local entrypoint:
node /absolute/path/to/shelby-mcp/dist/cli.js
Then substitute that node .../dist/cli.js command in any MCP client config if you prefer source-based usage over npx.
Repository
GitHub repository:
Tool endpoints
search_shelby_docsSearches the Shelby documentation bundle and returns ranked matches with IDs and snippets.read_shelby_docReads a page by exact path, title, URL, page ID, or fuzzy query.get_shelby_doc_chunkReads a specific page by the exact chunk ID returned from search results.list_shelby_doc_pagesLists available parsed pages and supports filtering by path or title text.
Project structure
File/Folder | Purpose |
| MCP server setup, tool registration, and stdio startup |
| CLI entry point that starts the server |
| Shelby docs loading, parsing, search, and formatting helpers |
| Compiled JavaScript output generated by |
| Dependencies, scripts, package metadata, and CLI registration |
| TypeScript compiler settings |
| Usage and setup instructions |
How it's built
This MCP server is a lightweight TypeScript implementation built on the official MCP SDK.
Core components
Built on
@modelcontextprotocol/sdkUses
StdioServerTransportfor local MCP clientsUses
zodto validate tool inputsFetches Shelby docs from the official
llms-full.txtbundle at startupParses the bundle into page chunks using Shelby's
# Title (/path)formatUses deterministic keyword scoring over titles, paths, URLs, and body text
Configuration
Optional environment variables:
SHELBY_DOCS_URL: alternate docs bundle URLSHELBY_DOCS_TIMEOUT_MS: HTTP timeout in milliseconds, default15000
Fork this for your own docs
This repo is a good base if you want to publish other docs-only MCP servers backed by a single llms-full.txt style bundle.
Update
package.json:{ "name": "your-docs-mcp", "description": "Docs-only MCP server for YourProduct documentation" }Update the docs URL in
src/shelbyDocs.ts:const DEFAULT_DOCS_URL = "https://your-domain.com/llms-full.txt";Update the server name in
src/index.ts:name: "your-docs-mcp"Build and publish:
npm install npm run build
Local development
This section is only for working on the MCP server itself.
npm install
npm run build
npm run check
npm startnpm run check verifies that the server can fetch and parse the live Shelby docs bundle.
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Jr-kenny/shelby-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server