Spaces:
Sleeping
Sleeping
File size: 15,763 Bytes
036a2db ed862c3 036a2db | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 | """
DiffContext MCP Server
Lets Claude Desktop / Cursor call DiffContext natively β no copy-paste needed.
How to use:
1. pip install mcp
2. Run: python -m diffcontext.mcp_server
"""
import ast
import json
import os
import sys
import tempfile
import shutil
from pathlib import Path
from typing import Any, Dict, List, Optional
# ββ Try to import MCP; give a clear error if not installed ββββββββββββββββββ
try:
from mcp.server import Server
from mcp.server.stdio import stdio_server
from mcp.types import Tool, TextContent
HAS_MCP = True
except ImportError:
HAS_MCP = False
# ββ Try to import DiffContext ββββββββββββββββββββββββββββββββββββββββββββββββ
try:
from .pipeline import index_repository, analyze_impact
from .pipeline import compile as dc_compile
HAS_DIFFCONTEXT = True
except ImportError:
try:
from diffcontext.pipeline import index_repository, analyze_impact
from diffcontext.pipeline import compile as dc_compile
HAS_DIFFCONTEXT = True
except ImportError:
HAS_DIFFCONTEXT = False
# ββ Sessions helper for remote hosted servers ββββββββββββββββββββββββββββββββ
def _get_sessions() -> Dict[str, str]:
try:
import importlib
backend_main = importlib.import_module("diffcontext-service.backend.main")
return backend_main.SESSIONS
except Exception:
try:
import importlib
backend_main = importlib.import_module("backend.main")
return backend_main.SESSIONS
except Exception:
return {}
# ββ Shared analysis logic (same as web service) ββββββββββββββββββββββββββββββ
def _list_symbols_in_dir(repo_path: str) -> List[str]:
symbols = []
for py_file in Path(repo_path).rglob("*.py"):
rel = "./" + str(py_file.relative_to(repo_path))
try:
source = py_file.read_text(errors="ignore")
tree = ast.parse(source)
except SyntaxError:
continue
for node in ast.walk(tree):
if isinstance(node, (ast.FunctionDef, ast.AsyncFunctionDef)):
symbols.append(f"{rel}:{node.name}")
return sorted(symbols)
def _blast_radius(repo_path: str, symbol: str) -> dict:
if HAS_DIFFCONTEXT:
idx = index_repository(repo_path)
if symbol not in idx.symbols and symbol not in idx.graph:
import difflib
suggestions = difflib.get_close_matches(symbol, list(idx.symbols.keys()), n=3, cutoff=0.4)
return {"error": f"'{symbol}' not found.", "suggestions": suggestions}
impact = analyze_impact(idx, [symbol])
reverse: Dict[str, List[str]] = {}
for caller, callees in idx.graph.items():
for callee in callees:
reverse.setdefault(callee, []).append(caller)
by_file: Dict[str, List[str]] = {}
for sym in impact.blast_radius:
fp = sym.split(":")[0]
by_file.setdefault(fp, []).append(sym.split(":")[-1])
return {
"symbol": symbol,
"direct_callers": reverse.get(symbol, []),
"direct_callees": idx.graph.get(symbol, []),
"blast_radius_count": len(impact.blast_radius),
"blast_radius_by_file": by_file,
"all_affected": impact.blast_radius[:50],
}
# AST fallback
all_functions: Dict[str, str] = {}
call_graph: Dict[str, List[str]] = {}
for py_file in Path(repo_path).rglob("*.py"):
rel = "./" + str(py_file.relative_to(repo_path))
try:
source = py_file.read_text(errors="ignore")
tree = ast.parse(source)
except SyntaxError:
continue
for node in ast.walk(tree):
if isinstance(node, (ast.FunctionDef, ast.AsyncFunctionDef)):
fid = f"{rel}:{node.name}"
all_functions[fid] = ""
calls = []
for child in ast.walk(node):
if isinstance(child, ast.Call):
if isinstance(child.func, ast.Name):
calls.append(child.func.id)
elif isinstance(child.func, ast.Attribute):
calls.append(child.func.attr)
call_graph[fid] = calls
name_to_ids: Dict[str, List[str]] = {}
for fid in all_functions:
name_to_ids.setdefault(fid.split(":")[-1], []).append(fid)
resolved_graph: Dict[str, List[str]] = {}
for fid, raw_calls in call_graph.items():
resolved = []
for call in raw_calls:
for candidate in name_to_ids.get(call, []):
if candidate != fid:
resolved.append(candidate)
resolved_graph[fid] = resolved
reverse: Dict[str, List[str]] = {}
for caller, callees in resolved_graph.items():
for callee in callees:
reverse.setdefault(callee, []).append(caller)
if symbol not in all_functions:
import difflib
suggestions = difflib.get_close_matches(symbol, list(all_functions.keys()), n=3, cutoff=0.4)
return {"error": f"'{symbol}' not found.", "suggestions": suggestions}
visited = {symbol}
blast = []
frontier = [symbol]
while frontier:
next_f = []
for node in frontier:
for caller in reverse.get(node, []):
if caller not in visited:
visited.add(caller)
blast.append(caller)
next_f.append(caller)
frontier = next_f
by_file: Dict[str, List[str]] = {}
for sym in blast:
fp = sym.split(":")[0]
by_file.setdefault(fp, []).append(sym.split(":")[-1])
return {
"symbol": symbol,
"direct_callers": reverse.get(symbol, []),
"direct_callees": resolved_graph.get(symbol, []),
"blast_radius_count": len(blast),
"blast_radius_by_file": by_file,
"all_affected": blast[:50],
}
# ββ MCP Tool definitions ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
if HAS_MCP:
TOOLS = [
Tool(
name="list_symbols",
description=(
"List all Python functions/methods in a repository. "
"Returns symbol IDs in the format './file.py:function_name'. "
"Provide either repo_path (local absolute path) or repo_id (from /upload on remote hosted servers)."
),
inputSchema={
"type": "object",
"properties": {
"repo_path": {
"type": "string",
"description": "Absolute path to the Python project directory on the local machine.",
},
"repo_id": {
"type": "string",
"description": "The session ID of an uploaded repository (for remote MCP servers).",
}
},
"required": [],
},
),
Tool(
name="blast_radius",
description=(
"Find the blast radius of a Python function β which other functions "
"will break if you change it. Returns direct callers, direct callees, "
"and the full transitive set of affected functions grouped by file."
),
inputSchema={
"type": "object",
"properties": {
"repo_path": {
"type": "string",
"description": "Absolute path to the Python project directory.",
},
"repo_id": {
"type": "string",
"description": "The session ID of an uploaded repository (for remote MCP servers).",
},
"symbol": {
"type": "string",
"description": "Symbol ID in format './relative/path.py:function_name' or './path.py:ClassName.method'",
},
},
"required": ["symbol"],
},
),
Tool(
name="compile_context",
description=(
"Compile a token-efficient LLM context package for a code change. "
"Returns the relevant functions and their relationships, trimmed to a token budget."
),
inputSchema={
"type": "object",
"properties": {
"repo_path": {
"type": "string",
"description": "Absolute path to the Python project directory.",
},
"repo_id": {
"type": "string",
"description": "The session ID of an uploaded repository (for remote MCP servers).",
},
"symbol": {
"type": "string",
"description": "Symbol ID to analyze, e.g. './src/auth.py:validate_jwt'",
},
"max_tokens": {
"type": "integer",
"description": "Token budget for context (default 8000). Lower = tighter selection.",
"default": 8000,
},
},
"required": ["symbol"],
},
),
Tool(
name="analyze_inline",
description=(
"Analyze Python code you paste directly β no file upload or local repo needed. "
"Useful for quick analysis of code snippets. "
"Returns blast radius and caller/callee relationships."
),
inputSchema={
"type": "object",
"properties": {
"files": {
"type": "object",
"description": "Dict of filename -> Python source code. E.g. {'service.py': 'def foo(): ...'}",
},
"symbol": {
"type": "string",
"description": "Symbol to analyze, e.g. './service.py:foo'",
},
},
"required": ["files", "symbol"],
},
),
]
else:
TOOLS = []
# ββ MCP Server ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
if HAS_MCP:
server = Server("diffcontext")
@server.list_tools()
async def list_tools():
return TOOLS
@server.call_tool()
async def call_tool(name: str, arguments: Dict[str, Any]):
try:
repo_path = arguments.get("repo_path")
repo_id = arguments.get("repo_id")
if name != "analyze_inline" and not repo_path and not repo_id:
result = {"error": "Must provide either 'repo_path' or 'repo_id'."}
else:
if repo_id:
sessions = _get_sessions()
if repo_id not in sessions:
result = {"error": f"repo_id '{repo_id}' not found. Please upload the repository zip first."}
return [TextContent(type="text", text=json.dumps(result, indent=2))]
repo_path = sessions[repo_id]
if name == "list_symbols":
if not os.path.isdir(repo_path):
result = {"error": f"Directory not found: {repo_path}"}
else:
symbols = _list_symbols_in_dir(repo_path)
result = {"count": len(symbols), "symbols": symbols}
elif name == "blast_radius":
symbol = arguments["symbol"]
if not os.path.isdir(repo_path):
result = {"error": f"Directory not found: {repo_path}"}
else:
result = _blast_radius(repo_path, symbol)
elif name == "compile_context":
symbol = arguments["symbol"]
max_tokens = arguments.get("max_tokens", 8000)
if not os.path.isdir(repo_path):
result = {"error": f"Directory not found: {repo_path}"}
elif not HAS_DIFFCONTEXT:
br = _blast_radius(repo_path, symbol)
result = {
"context": json.dumps(br, indent=2),
"note": "Install DiffContext for full compiled context.",
}
else:
idx = index_repository(repo_path)
impact = analyze_impact(idx, [symbol])
ctx = dc_compile(idx, impact, max_tokens=max_tokens)
result = {
"context": ctx.text,
"symbol_count": ctx.symbol_count,
"token_estimate": ctx.token_estimate,
"reduction_pct": round(ctx.reduction_pct, 1),
}
elif name == "analyze_inline":
files = arguments["files"]
symbol = arguments["symbol"]
tmp_dir = tempfile.mkdtemp(prefix="diffctx_mcp_")
try:
files_dict = {}
if isinstance(files, list):
for f in files:
if isinstance(f, dict):
files_dict[f.get("filename")] = f.get("content")
else:
files_dict = files
for filename, code in files_dict.items():
safe_name = Path(filename).name
with open(os.path.join(tmp_dir, safe_name), "w") as f:
f.write(code)
result = _blast_radius(tmp_dir, symbol)
finally:
shutil.rmtree(tmp_dir, ignore_errors=True)
else:
result = {"error": f"Unknown tool: {name}"}
except Exception as e:
result = {"error": str(e)}
return [TextContent(type="text", text=json.dumps(result, indent=2))]
else:
server = None
async def run_mcp_server():
if not HAS_MCP:
print(
"ERROR: 'mcp' package not installed.\n"
"Fix: pip install mcp\n",
file=sys.stderr,
)
sys.exit(1)
async with stdio_server() as (read_stream, write_stream):
await server.run(read_stream, write_stream, server.create_initialization_options())
def main():
import asyncio
print("Starting DiffContext MCP Server...", file=sys.stderr)
print(f"DiffContext installed: {HAS_DIFFCONTEXT}", file=sys.stderr)
print(f"MCP installed: {HAS_MCP}", file=sys.stderr)
if not HAS_MCP:
print("\nTo install: pip install mcp", file=sys.stderr)
sys.exit(1)
asyncio.run(run_mcp_server())
if __name__ == "__main__":
main()
|