This commit is contained in:
nirholas
2026-03-31 10:19:42 +00:00
parent 261739a6c2
commit 24d8621c8e
17 changed files with 2681 additions and 10 deletions

View File

@@ -1,7 +1,7 @@
{
"name": "claude-code-explorer-mcp",
"version": "1.0.0",
"description": "MCP server for exploring the Claude Code source code",
"version": "1.1.0",
"description": "MCP server for exploring the Claude Code source code — STDIO, HTTP, and SSE transports",
"type": "module",
"main": "dist/index.js",
"bin": {
@@ -10,13 +10,17 @@
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc --watch"
"start:http": "node dist/http.js",
"dev": "npx tsx src/index.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1"
"@modelcontextprotocol/sdk": "^1.12.1",
"express": "^4.21.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
}
}