RootApp Documentation MCP Server

RootApp Documentation MCP Server

Serves RootApp documentation files with search and retrieval capabilities, enabling users to access specific docs, browse directory structure, and search across file names and content.

Category
Visit Server

README

RootApp Documentation MCP Server

A simple MCP (Model Context Protocol) server that serves RootApp documentation files with search and retrieval capabilities using stdio transport.

Docs as of Feb 11 2026

This repository contains RootApp documentation files as of February 11, 2026.

Features

  • Retrieve Documentation: Access any markdown file in the DOCS directory
  • List Directory: Browse the documentation directory structure
  • Search Files: Case-insensitive search across file names and paths
  • Search Content: Search within the actual content of documentation files
  • Dynamic Path Resolution: Automatically resolves DOCS path relative to the project directory

Installation

  1. Install dependencies:
npm install
  1. Build the project:
npm run build

For detailed setup instructions, see HOWTOUSE.md.

MCP Configuration (for AI Assistants)

The MCP server uses stdio transport. Configure it in your Cline/VS Code MCP settings file:

{
  "mcpServers": {
    "rootapp-docs": {
      "command": "node",
      "args": ["<PATH_TO_REPO>/build/index.js"],
      "type": "stdio",
      "disabled": false
    }
  }
}

Replace <PATH_TO_REPO> with your local repository path (e.g., /Users/yourname/MCP-Server-for-RootApp-Dev-Docs on macOS/Linux or d:/github/MCP-Server-for-RootApp-Dev-Docs on Windows).

Alternative Configuration (VS Code native MCP)

For VS Code's native MCP support, use this format:

{
  "mcpServers": {
    "RootAppDocsSearchTool": {
      "type": "stdio",
      "command": "node",
      "args": [
        "d:/github/MCP-Server-for-RootApp-Dev-Docs/build/index.js"
      ]
    }
  }
}

Replace the path with your actual local repository path.

Note: After updating the MCP configuration, restart Cline or toggle MCP connections to apply the changes.

Available Tools

get_documentation

Retrieve a specific documentation file by path.

Parameters:

  • path (string): Path to the documentation file without .md extension
    • Example: "bot/api/reference/classes/RootApiException"

Returns: Raw markdown content

list_directory

List files and directories in a documentation directory.

Parameters:

  • path (string, optional): Path to the directory relative to DOCS root
    • Default: root directory
    • Example: "bot/api/reference/classes"

Returns: Array of file/directory names

search_documentation

Search across all documentation files.

Parameters:

  • query (string): Search query
    • Example: "client", "channel", "class"

Returns: Array of full file paths that match the query (case-insensitive on file names and full paths)

search_content

Search within the actual content of all documentation files. HTML tags are automatically stripped from content before searching to avoid false matches from HTML attributes like class, id, etc.

Parameters:

  • query (string): Search query - keyword or phrase to search within file contents
    • Example: "exception", "createMessage", "permission"
  • limit (number, optional): Maximum number of results to return (default: 20)
  • includeSnippet (boolean, optional): Include context snippets around matches (default: false)
  • contextLength (number, optional): Number of characters before and after match in snippet (default: 100)

Returns: Array of matching files with paths, match counts, and optional snippets

Note: HTML tags are automatically removed before searching, ensuring searches for terms like class or id only match actual content, not HTML attributes.

Example Response:

{
  "matches": [
    {
      "path": "bot/api/reference/classes/RootApiException.md",
      "matchCount": 15,
      "snippet": "...RootApiException is thrown when an API call fails..."
    }
  ],
  "total": 8,
  "query": "exception"
}

Usage Examples

> List all classes in the reference documentation
> Search for files about channels
> Get the documentation for RootApiException

Project Structure

MCP-Server-for-RootApp-Dev-Docs/
├── DOCS/                    (documentation files)
├── src/
│   └── index.ts             (MCP server implementation)
├── build/                   (compiled JavaScript)
│   └── index.js
├── package.json
├── tsconfig.json
└── .gitignore

Development

To rebuild after changes:

npm run build

Notes

  • The server automatically resolves the DOCS path relative to the script location
  • No environment variables needed
  • All documentation files are indexed on server startup

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