A production-ready TypeScript MCP server that provides comprehensive project analysis, intelligent code search, dependency tracking, and coordinated multi-file editing capabilities.
{
"mcpServers": {
"context-engine-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A production-ready TypeScript MCP server that provides comprehensive project analysis, intelligent code search, dependency tracking, and coordinated multi-file editing capabilities.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 225 days ago. 5 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Dynamic problem-solving through sequential thought chains
A Model Context Protocol server for searching and analyzing arXiv papers
An open-source AI agent that brings the power of Gemini directly into your terminal.
MCP Security Weekly
Get CVE alerts and security updates for Context Engine MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
# Context Engine MCP Server
A production-ready TypeScript MCP server providing comprehensive project analysis, intelligent search, multi-file editing, and dependency mapping capabilities.
## ✅ Fully Tested & Verified
## Features
- 🔍 **Comprehensive Project Analysis** - Deep analysis of project structure, dependencies, and codebase
- 🔎 **Intelligent Search** - Advanced search with regex support and structural awareness
- 📝 **Multi-file Editing** - Atomic operations across multiple files with automatic backups
- 🔗 **Dependency Mapping** - Complete file relationship and import/export analysis
- 📊 **Project Statistics** - Detailed metrics and code health insights
- ⚡ **High Performance** - Intelligent caching and optimized processing
- 🛠️ **Production Ready** - Comprehensive error handling and logging
## Quick Start
### 🚀 Using npx (Recommended & Tested)
**No installation required!** Just add this configuration to your MCP client:
```json
{
"mcpServers": {
"context-engine": {
"command": "npx",
"args": ["-y", "context-engine-mcp"]
}
}
}
```
### Alternative: Global Installation
1. **Install globally:**
```bash
npm install -g context-engine-mcp
```
2. **Configure your MCP client:**
```json
{
"mcpServers": {
"context-engine": {
"command": "context-engine-mcp"
}
}
}
```
### Local Development
1. **Clone and build:**
```bash
git clone https://github.com/RaheesAhmed/Context-Engine-MCP-Server.git
cd Context-Engine-MCP-Server
npm install
npm run build
```
2. **Configure with local path:**
```json
{
"mcpServers": {
"context-engine": {
"command": "node",
"args": ["./dist/index.js"]
}
}
}
```
## MCP Client Integration
### Cline (VSCode Extension)
Add to: `C:\Users\{USERNAME}\AppData\Roaming\Code\User\globalStorage\saoudrizwan.claude-dev\settings\cline_mcp_settings.json`
### Claude Desktop
Add to: `%APPDATA%\Claude\claude_desktop_config.json`
### Other MCP Clients
Use the same configuration format shown above.
## Available Tools
| Tool | Description |
| ------------------------ | -------------------------------------------- |
| `analyze_project` | Comprehensive project analysis with caching |
| `search_project` | Intelligent search across project files |
| `edit_multiple_files` | Atomic multi-file editing with backups |
| `get_file_relationships` | File dependency and import/export mapping |
| `get_project_stats` | Detailed project metrics and health insights |
| `clear_cache` | Clear all cached project data |
## Available Resources
| Resource | URI | Description |
| ------------------ | ------------------------------ | ---------------------------------- |
| Project Analysis | `context://project-analysis`
... [View full README on GitHub]