code-context
Enables AI coding assistants to automatically scan, store, and query API endpoints from codebases, providing instant lookup and semantic search to reduce context switching and token consumption.
README
code-context
MCP (Model Context Protocol) server for managing API endpoints and code context for AI coding assistants.
Problem
When using AI coding assistants like Claude Code, you often need to reference API endpoints while writing code. This requires:
- Repeatedly searching through codebases
- High token consumption from context switching
- Risk of using outdated API information
- Manual tracking of endpoint specifications
Solution
code-context automatically scans and stores your API endpoints in a vector database, enabling:
- ā Instant lookup by endpoint name or route
- ā Semantic search by describing what the endpoint does
- ā Complete specifications (headers, parameters, responses)
- ā Always up-to-date with your codebase
Features
- š Automatic scanning of Python FastAPI/Flask projects
- š¾ Vector storage with Qdrant (embedded mode)
- š§ MCP integration with Claude Code/Desktop
- š CRUD operations for endpoint management
- š Zero-config setup with
pipx install - šÆ Extensible architecture for more languages
Installation
Quick Start (Recommended)
# Step 1: Install code-context
pipx install code-context
# Step 2: Initialize configuration (run once)
code-context init
# Step 3: Install MCP client integration
code-context install-mcp
The install-mcp wizard will guide you through:
- Selecting your AI coding assistant platform
- Automatically configuring the MCP integration
- Testing the connection
Manual Installation (Development)
# Clone repository
git clone https://github.com/jieyefriic/code-context
cd code-context
# Install in development mode
pip install -e .
# Initialize configuration
code-context init
# Install MCP client
code-context install-mcp
MCP Client Installation
code-context works with 12+ AI coding assistants through the Model Context Protocol (MCP):
Supported Platforms: Claude Code ⢠Cursor ⢠Antigravity ⢠Windsurf ⢠Warp ⢠Cline ⢠VS Code Copilot ⢠Copilot CLI ⢠Amp ⢠Gemini CLI ⢠Codex ⢠Factory CLI
Quick Install
code-context install-mcp
This interactive wizard will automatically configure your AI assistant.
Manual Installation
For detailed platform-specific instructions, see INSTALLATION.md
Quick Links:
- Claude Code Setup
- Cursor Setup
- Antigravity Setup
- Windsurf Setup
- Warp Terminal Setup
- All Platforms & Troubleshooting
Usage
1. Initialize (Run Once)
code-context init
This wizard will:
- Guide you through selecting LLM provider (OpenAI, Gemini, DeepSeek, etc.)
- Configure API keys securely
- Set up embedding configuration
- Create data directory at
~/.code-context/ - Initialize embedded Qdrant database
Important: This step must be completed before using the MCP server.
2. Scan Your Codebase
In Claude Code, ask:
Scan my project directory for API endpoints
Or manually:
# In Python REPL
from code_context import tools
tools.scan_codebase("/path/to/your/project", language="python")
3. Query Endpoints
In Claude Code, you can now ask:
What's the user login endpoint specification?
Show me all endpoints related to authentication
What parameters does the /api/users/:id endpoint accept?
MCP Tools
The following tools are available to Claude Code:
search_endpoint
Search for endpoints by name or route
{
"name": "get_user", // Optional: exact name match
"route": "/api/users" // Optional: exact route match
}
add_endpoint
Manually add an endpoint
{
"name": "create_user",
"route": "/api/users",
"method": "POST",
"file_path": "/path/to/api.py",
"description": "Create a new user",
"parameters": {...},
"response_format": {...}
}
scan_codebase
Scan a directory for endpoints
{
"directory": "/path/to/project",
"language": "python"
}
update_endpoint
Update an existing endpoint
{
"endpoint_id": "uuid-here",
"updates": {
"description": "Updated description"
}
}
delete_endpoint
Delete an endpoint
{
"endpoint_id": "uuid-here"
}
list_endpoints
List all stored endpoints
{
"limit": 100
}
Supported Frameworks
Current
- ā Python: FastAPI, Flask
Planned
- š Node.js: Express, NestJS
- š Go: Gin, Echo, Chi
- š Rust: Axum, Actix
Architecture
code-context/
āāā src/code_context/
ā āāā server.py # MCP server core
ā āāā config.py # Configuration management
ā āāā tools/ # MCP tool implementations
ā āāā scanner/ # Code scanners (extensible)
ā ā āāā python.py # Python scanner
ā ā āāā [future: go.py, rust.py, etc.]
ā āāā database/ # Qdrant client wrapper
āāā tests/
Configuration
Environment Variables
# Custom data directory
export CODE_CONTEXT_DATA_DIR=~/.my-code-context
# Use remote Qdrant
export CODE_CONTEXT_QDRANT_URL=http://localhost:6333
export CODE_CONTEXT_QDRANT_API_KEY=your-key
# Collection settings
export CODE_CONTEXT_COLLECTION_NAME=my_endpoints
export CODE_CONTEXT_VECTOR_SIZE=1536
View Current Config
code-context info
Development
Setup
# Clone and install with dev dependencies
git clone https://github.com/jieyefriic/code-context
cd code-context
pip install -e ".[dev]"
Run Tests
pytest tests/
Code Formatting
black src/
ruff check src/
Extending
Add a New Language Scanner
Create src/code_context/scanner/golang.py:
from . import BaseScanner
from ..database import Endpoint
class GoScanner(BaseScanner):
def can_handle(self, file_path):
return file_path.suffix == ".go"
def scan_file(self, file_path):
# Implement Go-specific scanning
endpoints = []
# ... parse Go code ...
return endpoints
Register in scanner/python.py:
def get_scanner(language: str):
scanners = {
"python": PythonScanner,
"go": GoScanner, # Add here
}
# ...
Roadmap
- [x] Basic MCP server
- [x] Python FastAPI/Flask scanner
- [x] Embedded Qdrant storage
- [ ] LLM integration for semantic search
- [ ] Support for more languages (Go, Rust, Node.js)
- [ ] Web UI for endpoint management
- [ ] VS Code extension
- [ ] Automatic re-scanning on file changes
- [ ] Cloud-hosted version for teams
Contributing
Contributions welcome! Please:
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests
- Submit a pull request
License
MIT License - see LICENSE file for details
FAQ
Q: Does this work with Claude Desktop?
A: Yes! It works with both Claude Code and Claude Desktop.
Q: Can I use a remote Qdrant server?
A: Yes, set CODE_CONTEXT_QDRANT_URL environment variable.
Q: How do I update endpoints when code changes?
A: Re-run scan_codebase on the directory. Future versions will support auto-refresh.
Q: Can I use this with non-Python projects?
A: Not yet, but Go/Rust/Node.js support is planned. You can manually add endpoints with add_endpoint.
Q: Does this send my code to external services?
A: No. Everything runs locally unless you configure a remote Qdrant server. LLM integration (optional) will use your API keys.
Support
- š Documentation
- š Issues
- š¬ Discussions
Made with ā¤ļø for the AI coding community
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.