@grafema/mcp 0.1.0-alpha.1 → 0.1.0-alpha.3

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 +17 -2
  2. package/dist/server.js +0 -0
  3. package/package.json +10 -10
package/README.md CHANGED
@@ -22,16 +22,31 @@ Model Context Protocol (MCP) server that exposes Grafema's code analysis capabil
22
22
  npx grafema-mcp --project /path/to/your/project
23
23
  ```
24
24
 
25
+ ### Claude Code configuration
26
+
27
+ Add to your project's `.mcp.json`:
28
+
29
+ ```json
30
+ {
31
+ "mcpServers": {
32
+ "grafema": {
33
+ "command": "npx",
34
+ "args": ["@grafema/mcp", "--project", "."]
35
+ }
36
+ }
37
+ }
38
+ ```
39
+
25
40
  ### Claude Desktop configuration
26
41
 
27
- Add to your Claude Desktop config (`~/.config/claude/claude_desktop_config.json`):
42
+ Add to `~/.config/claude/claude_desktop_config.json`:
28
43
 
29
44
  ```json
30
45
  {
31
46
  "mcpServers": {
32
47
  "grafema": {
33
48
  "command": "npx",
34
- "args": ["grafema-mcp", "--project", "/path/to/project"]
49
+ "args": ["@grafema/mcp", "--project", "/path/to/project"]
35
50
  }
36
51
  }
37
52
  }
package/dist/server.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grafema/mcp",
3
- "version": "0.1.0-alpha.1",
3
+ "version": "0.1.0-alpha.3",
4
4
  "description": "MCP server for Grafema code analysis toolkit",
5
5
  "type": "module",
6
6
  "main": "./dist/server.js",
@@ -22,11 +22,6 @@
22
22
  "dist",
23
23
  "src"
24
24
  ],
25
- "scripts": {
26
- "build": "tsc",
27
- "clean": "rm -rf dist",
28
- "start": "node dist/server.js"
29
- },
30
25
  "keywords": [
31
26
  "grafema",
32
27
  "mcp",
@@ -41,13 +36,18 @@
41
36
  "directory": "packages/mcp"
42
37
  },
43
38
  "dependencies": {
44
- "@grafema/core": "workspace:*",
45
- "@grafema/types": "workspace:*",
46
39
  "@modelcontextprotocol/sdk": "^1.25.1",
47
- "ajv": "^8.17.1"
40
+ "ajv": "^8.17.1",
41
+ "@grafema/core": "0.1.0-alpha.3",
42
+ "@grafema/types": "0.1.0-alpha.3"
48
43
  },
49
44
  "devDependencies": {
50
45
  "@types/node": "^25.0.8",
51
46
  "typescript": "^5.9.3"
47
+ },
48
+ "scripts": {
49
+ "build": "tsc",
50
+ "clean": "rm -rf dist",
51
+ "start": "node dist/server.js"
52
52
  }
53
- }
53
+ }