genlayer-docs-mcp
Enables AI assistants to search, retrieve, and browse GenLayer documentation through MCP tools.
README
GenLayer Documentation MCP Server
A standardized, shareable Model Context Protocol (MCP) server that packages and exposes the GenLayer documentation (genlayer-docs (3).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 instantly with zero manual file path or dependency setup.
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.
Universal Running & Setup Options
You can run this server using standard Python tools. We recommend using uv (a fast Python package manager) for a zero-install experience, or standard pip/pipx.
Option A: Running Locally (For Development)
If you have cloned or downloaded this directory locally to c:\Users\MueAb\Desktop\Genlayer mcp:
1. Claude Desktop Setup
Open your Claude configuration file (on Windows: %APPDATA%\Claude\claude_desktop_config.json) and add the server inside the mcpServers block:
-
Using
uvx(Easiest, zero-install):{ "mcpServers": { "genlayer-docs": { "command": "uvx", "args": [ "--from", "c:\\Users\\MueAb\\Desktop\\Genlayer mcp", "genlayer-docs-mcp" ] } } } -
Using installed python package: If you have installed the package via
pip install -e .(orpip install .):{ "mcpServers": { "genlayer-docs": { "command": "python", "args": [ "-m", "genlayer_docs_mcp.server" ] } } }
2. Cursor IDE / Windsurf Setup
Register the server in your editor's MCP settings:
- Type:
command - Command:
uvx --from "c:\Users\MueAb\Desktop\Genlayer mcp" genlayer-docs-mcp
Option B: Publishing & Distributing to PyPI (For Everyone)
If you publish this package to PyPI (e.g., under the name genlayer-docs-mcp), anyone in the world can use it on any AI client instantly with zero local files!
1. Claude Desktop Setup
Any user can simply add this to their claude_desktop_config.json:
{
"mcpServers": {
"genlayer-docs": {
"command": "uvx",
"args": ["genlayer-docs-mcp"]
}
}
}
2. Cursor IDE / Windsurf Setup
- Type:
command - Command:
uvx genlayer-docs-mcp
Option C: Installation via pipx or pip
Users who prefer not to use uvx can install the server globally using pipx:
# Install globally from PyPI
pipx install genlayer-docs-mcp
# Or install globally from local directory
pipx install c:\Users\MueAb\Desktop\Genlayer mcp
Then configure the command in any AI client as:
- Command:
genlayer-docs-mcp(no arguments required)
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.