genlayer-docs-mcp

genlayer-docs-mcp

Enables AI assistants to search, retrieve, and browse GenLayer documentation through MCP tools.

Category
Visit Server

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:

  1. 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.

  2. get_section(title: string): Retrieve the full content of a specific documentation section matching the specified heading title.

  3. 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 . (or pip 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

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured