DevDocs

by llmian-space

7 stars
379 downloads
Not rated
GitHub

About

Integrates with software documentation sources to process, index, and retrieve technical content for enhanced code assistance and API exploration.

Details

Author
llmian-space
Repository
llmian-space/devdocs-mcp
GitHub stars
7
Downloads
379
License
MIT License
Categories
Productivity, Developer Tools, Design, Workplace, File Management, AI, API, Knowledge Base, Frontend, Other

- Resource template system with URI‑based access
- Type‑safe parameter handling via Pydantic
- Property‑based testing with Hypothesis
- Structured error handling and recovery strategies
- URI validation and parameter extraction
- Comprehensive error handling foundation

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name DevDocs
    Command (node, npx, python, etc.) npx
    Arguments
    • Argument 1 -y
    • Argument 2 @highlight/mcp-server

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Use the resource template system by creating ResourceTemplate objects with URI templates and parameter types, then extracting and validating parameters from URIs. Run property‑based tests with pytest tests/property/test_templates.py to verify template validation, parameter extraction, and error handling.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "devdocs": {
            "env": {},
            "args": [
                "-y",
                "@highlight/mcp-server"
            ],
            "command": "npx"
        }
    }
}

Linux

{
    "env": [],
    "args": [
        "-y",
        "@highlight/mcp-server"
    ],
    "command": "npx"
}

Macos

{
    "env": [],
    "args": [
        "-y",
        "@highlight/mcp-server"
    ],
    "command": "npx"
}

Windows

{
    "env": [],
    "args": [
        "/c",
        "npx",
        "-y",
        "@highlight/mcp-server"
    ],
    "command": "cmd"
}

DevDocs MCP Implementation

A Model Context Protocol (MCP) implementation for documentation management and integration.

Project Structure

src/
├── resources/
│   ├── templates/      # Resource template system
│   └── managers/       # Resource management
├── documentation/
│   ├── processors/     # Documentation processing
│   └── integrators/    # Integration handlers
├── tasks/
│   ├── issues/         # Issue tracking
│   └── reviews/        # Review management
└── tests/
    ├── property/       # Property-based tests
    └── integration/    # Integration tests

Core Components

Resource Template System

The resource template system provides URI-based access to documentation resources with:
- Type-safe parameter handling through Pydantic
- Flexible URI template matching
- Comprehensive error handling
- State management for resource lifecycle

Example usage:

```python
from src.resources.templates.base import ResourceTemplate

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.