@kidkender/archmind-mcp 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +107 -0
  2. package/dist/index.cjs +28089 -0
  3. package/package.json +42 -0
package/package.json ADDED
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "@kidkender/archmind-mcp",
3
+ "version": "0.1.0",
4
+ "description": "ArchMind MCP server — semantic execution graph intelligence for Laravel projects, wired into Claude Code and any MCP-compatible AI client.",
5
+ "type": "module",
6
+ "bin": {
7
+ "archmind-mcp": "./dist/index.cjs"
8
+ },
9
+ "scripts": {
10
+ "build": "node build.mjs",
11
+ "dev": "node --loader ts-node/esm src/index.ts"
12
+ },
13
+ "dependencies": {
14
+ "tree-sitter": "^0.21.0",
15
+ "tree-sitter-php": "^0.22.0"
16
+ },
17
+ "devDependencies": {
18
+ "@archmind/laravel-parser": "*",
19
+ "@archmind/retrieval": "*",
20
+ "@archmind/explainer": "*",
21
+ "@archmind/protocol": "*",
22
+ "@archmind/runtime-ingest": "*",
23
+ "@archmind/runtime-correlator": "*",
24
+ "@modelcontextprotocol/sdk": "^1.29.0",
25
+ "@types/node": "^20.0.0",
26
+ "esbuild": "^0.28.0",
27
+ "typescript": "^5.4.0",
28
+ "zod": "^3.0.0"
29
+ },
30
+ "keywords": ["laravel", "mcp", "static-analysis", "security", "execution-graph", "claude-code"],
31
+ "license": "MIT",
32
+ "repository": {
33
+ "type": "git",
34
+ "url": "https://github.com/kidkender/archmind"
35
+ },
36
+ "engines": {
37
+ "node": ">=18"
38
+ },
39
+ "files": [
40
+ "dist/index.cjs"
41
+ ]
42
+ }