A community-driven registry for Claude, Cursor, Windsurf, Cline & more. Not affiliated with Anthropic.
Are you the author? Sign in to claim
A Rust-based Model Context Protocol (MCP) server for AI code generation. Solves the context engineering problem by organ
A comprehensive context management system for AI-powered development, featuring both a Rust-based MCP server and a VS Code extension for intelligent context assistance.
# Build and run the MCP server
cargo run --release
# Or simply run (default mode)
context-server-rs
# Query contexts by task
context-server-rs query --task auth --project myapp --format json
# List all business rules
context-server-rs list business_rule --project myapp
# Search for "pagination"
context-server-rs search "pagination" --project myapp
# Get specific context by ID
context-server-rs get "rule-123" --project myapp
See CLI Usage Guide for complete documentation. Perfect for OpenClaw agent integration and programmatic access.
# Build the VS Code extension
./scripts/build-extension.sh # Linux/Mac
# or
.\scripts\build-extension.ps1 # Windows
# Install the extension
code --install-extension vscode-extension/professional-context-engine-1.0.0.vsix
├── src/ # Rust MCP server source code
│ ├── api/ # HTTP API endpoints
│ ├── context/ # Context management logic
│ ├── db/ # Database layer
│ ├── models/ # Data models
│ ├── repositories/ # Data access layer
│ └── services/ # Business logic services
├── vscode-extension/ # VS Code extension
│ ├── src/ # TypeScript source code
│ ├── INSTALLATION.md # Installation guide
│ ├── QUICK_START.md # Quick setup guide
│ └── README.md # Extension documentation
├── docs/ # Project documentation
├── examples/ # Usage examples
├── tests/ # Integration tests
├── scripts/ # Build and utility scripts
│ ├── build-extension.sh # Extension build script (Linux/Mac)
│ ├── build-extension.ps1 # Extension build script (Windows)
└── README.md # This file
See CLI Quick Reference and OpenClaw Integration Guide
Clone and build:
git clone <repository-url>
cd professional-context-engine
cargo build --release
Run the server:
cargo run --release
Configure MCP clients (see MCP Integration Guide)
Build the extension:
# Linux/Mac
./scripts/build-extension.sh
# Windows
.\scripts\build-extension.ps1
Install in VS Code:
code --install-extension vscode-extension/professional-context-engine-1.0.0.vsix
Configure the extension:
Ctrl+,)http://localhost:3000For detailed setup instructions, see:
Add to your Claude Desktop configuration:
Windows: %APPDATA%\Claude\claude_desktop_config.json
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"context-server": {
"command": "path/to/your/context-server-executable",
"args": [],
"env": {}
}
}
}
Configure in Cursor's MCP settings:
{
"mcpServers": {
"context-server": {
"command": "cargo",
"args": ["run", "--release"],
"cwd": "/path/to/professional-context-engine"
}
}
}
# Build MCP server
cargo build --release
# Build VS Code extension
cd vscode-extension
npm install
npm run compile
npx vsce package
# Run Rust tests
cargo test
# Run VS Code extension tests
cd vscode-extension
npm test
MCP Server Development:
# Run in development mode
cargo run
# Run with debug logging
RUST_LOG=debug cargo run
VS Code Extension Development:
cd vscode-extension
npm run watch # Compile in watch mode
# Then press F5 in VS Code to launch extension host
See CONTRIBUTING.md for detailed guidelines.
This project is licensed under the MIT License - see the LICENSE file for details.
Built with ❤️ for developers who love intelligent, context-aware coding assistance.
Run Claude Code as an MCP server so any agent can delegate coding tasks to it
Browser automation using accessibility snapshots instead of screenshots
MCP server integration for DaVinci Resolve Studio
A Jetbrains IDE IntelliJ plugin aimed to provide coding agents the ability to leverage intelliJ's indexing of the codeba