genlayer-docs-mcp
This server provides structured access to the GenLayer documentation through three tools:
search_docs: Search the documentation using a natural language query and retrieve the top matching sections, complete with hierarchical title breadcrumbs (e.g.,What is GenLayer > Core Technology > On-Chain AI Processing) and full content.get_section: Fetch the full content of a specific documentation section by providing its exact heading title (e.g.,'Optimistic Democracy'or'Economic Model').list_sections: Get a complete list of all headings and subheadings available in the GenLayer documentation, along with their starting line numbers, useful for navigation and discovery.
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., "@genlayer-docs-mcpSearch GenLayer docs for on-chain AI processing"
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.
GenLayer Documentation MCP Server
A standardized, shareable Model Context Protocol (MCP) server that packages and exposes the GenLayer documentation (genlayer-docs.txt) to any AI assistant (including Claude Desktop, Cursor, Windsurf, Gemini, and others).
By packaging this as a Python project with a pyproject.toml and utilizing the official mcp SDK, anyone can run it with a standard Python install — no manual file paths or dependency wrangling.
Available Tools
Once registered, the server exposes the following tools:
search_docs(query: string, top_k: int = 5): Search the GenLayer documentation for relevant sections matching a query. Returns top matching sections along with their hierarchical title breadcrumbs (e.g.,What is GenLayer > Core Technology > On-Chain AI Processing) and starting line numbers.get_section(title: string): Retrieve the full content of a specific documentation section matching the specified heading title.list_sections(): List all headings and subheadings present in the GenLayer documentation along with their starting line numbers.
Related MCP server: mcp-minecraft-forge
Quick Start (Recommended)
This is the setup verified to work with a standard Python installation on Windows, macOS, and Linux.
1. Install the package
From PyPI:
pip install genlayer-docs-mcpOr from source (after cloning this repo):
pip install .2. Register it with your AI client
Add the server inside the mcpServers block of your client's MCP config
(Claude Desktop on Windows: %APPDATA%\Claude\claude_desktop_config.json):
{
"mcpServers": {
"genlayer-docs": {
"command": "python",
"args": [
"-m",
"genlayer_docs_mcp"
]
}
}
}Why
python -m? It uses the Python interpreter already on yourPATH, so there is nothing extra to install (unlikeuvx, which requiresuvto be installed first). Restart your client after saving, and the three tools above will appear.
For Cursor / Windsurf, use the same values in the editor's MCP settings:
Type:
commandCommand:
pythonArgs:
-m genlayer_docs_mcp
Alternative: Zero-install with uvx
If you have uv installed, you can run the server
without installing it first. Anyone in the world can use this on any AI client
with zero local files:
{
"mcpServers": {
"genlayer-docs": {
"command": "uvx",
"args": ["genlayer-docs-mcp"]
}
}
}Cursor / Windsurf command: uvx genlayer-docs-mcp
Requires
uv/uvxon yourPATH. Install it withwinget install astral-sh.uv(Windows) or see the uv install guide.
Alternative: Install directly from GitHub (no PyPI needed)
To track the latest source, install straight from the public repository:
Using
pip:pip install "git+https://github.com/Laegend14/Genlayer-mcp"Using
uvx(zero-install):{ "mcpServers": { "genlayer-docs": { "command": "uvx", "args": [ "--from", "git+https://github.com/Laegend14/Genlayer-mcp", "genlayer-docs-mcp" ] } } }
Alternative: Global install via pipx
Users who prefer an isolated global install can use pipx:
# From PyPI
pipx install genlayer-docs-mcp
# Or from GitHub
pipx install "git+https://github.com/Laegend14/Genlayer-mcp"Then configure the command in any AI client as:
Command:
genlayer-docs-mcp(no arguments required)
Note: this requires the
pipxscripts directory to be on yourPATH(pipx ensurepath). If your client can't find thegenlayer-docs-mcpexecutable, use the Quick Startpython -mmethod instead.
Development
Clone the repo and install in editable mode:
git clone https://github.com/Laegend14/Genlayer-mcp
cd Genlayer-mcp
pip install -e .Run the server directly to confirm it loads the documentation:
python -m genlayer_docs_mcpYou should see a log line reporting the number of parsed documentation sections.
Maintenance
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
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/Laegend14/Genlayer-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server