Install
$ agentstack add mcp-maheshdoiphode-mcpdata ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →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:
- [mcpdata](src/README.md) - Fast indexing engine
- [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.
- Author: MaheshDoiphode
- Source: MaheshDoiphode/mcpdata
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.