AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Mcpdata

mcp-maheshdoiphode-mcpdata · by MaheshDoiphode

Create a documented indexing of your codebase/docs to use it with local mcp-server for better providing context to AI

No reviews yet
0 installs
5 views
0.0% view→install

Install

$ agentstack add mcp-maheshdoiphode-mcpdata

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-maheshdoiphode-mcpdata)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
stale · 1y ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Mcpdata? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Local MCP System

A comprehensive system for local documentation indexing and AI-powered search through MCP (Model Context Protocol). Enable AI assistants to search across all your documentation and code repositories from a single interface.

🚀 Quick Start

1. Install and Index

cd mcpdata
pip install -e .
mcpdata /path/to/your/docs --workspace-name "My Docs"

2. Start MCP Server

cd mcp-global-server
pip install -r requirements.txt
python server.py

3. Configure AI Client

{
  "mcpServers": {
    "global-docs": {
      "command": "python",
      "args": ["C:\\path\\to\\localmcp\\mcp-global-server\\server.py"]
    }
  }
}

🛠️ GitHub Copilot Configuration

To use with GitHub Copilot, add the MCP server configuration to your VS Code settings:

Location

Create or edit: C:\Users\%UserProfile%\AppData\Roaming\Code\User\mcp.json

Configuration

{
    "servers": {
        "global-docs": {
            "id": "global-docs",
            "name": "global-docs",
            "version": "1.0.0",
            "config": {
                "type": "stdio",
                "command": "C:\\Users\\%UserProfile%\\AppData\\Local\\Programs\\Python\\Python312\\python.exe",
                "args": [
                    "C:\\path\\to\\your\\localmcp\\mcp-global-server\\server.py"
                ],
                "env": {
                    "MCP_REGISTRY_PATH": "C:\\Users\\%UserProfile%\\Documents\\mcpdata"
                }
            }
        }
    },
    "inputs": []
}

Note: Replace the paths with your actual Python installation and project location.

🎮 Examples

Search Across Documentation and Code

You: "Search for mcp configuration"

Get Complete File Contents

You: "Get the contents of the initializer file"

🏗️ Architecture

localmcp consists of two components:

  1. [mcpdata](src/README.md) - Fast indexing engine
  2. [mcp-global-server](mcp-global-server/README.md) - MCP server for AI

Flow: Index files → Create searchable database → AI searches via MCP

📊 What You Can Search

  • Documentation: .md, .rst, .txt, .adoc
  • Code: .py, .js, .ts, .java, .cpp, .rs
  • Config: .json, .yaml, .yml, .toml

🔗 Documentation

  • [Complete Installation Guide](docs/INSTALLATION.md)
  • [GitHub Copilot Setup](docs/GITHUB-COPILOT.md)
  • [Configuration Options](docs/CONFIGURATION.md)
  • [Troubleshooting Guide](docs/TROUBLESHOOTING.md)
  • [Contributing Guide](docs/CONTRIBUTING.md)

🎯 Use Cases

  • Documentation Teams - Search across multiple doc repositories
  • Development Teams - Find code patterns across repositories
  • Mixed Projects - Unified search for docs + code

📜 License

MIT License - see [LICENSE](LICENSE) file for details.


Ready to get started? Follow the [Quick Start](#-quick-start) above or read the [Complete Installation Guide](docs/INSTALLATION.md).

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.