@ebowwa/dependency-graph-mcp 1.0.0 → 1.0.1

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.
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # @mcp/dependency-graph
1
+ # @ebowwa/dependency-graph-mcp
2
2
 
3
3
  MCP server for dependency graph analysis and visualization in monorepos.
4
4
 
@@ -14,7 +14,9 @@ MCP server for dependency graph analysis and visualization in monorepos.
14
14
  ## Installation
15
15
 
16
16
  ```bash
17
- bun add @mcp/dependency-graph
17
+ bun add @ebowwa/dependency-graph-mcp
18
+ # or
19
+ npm install @ebowwa/dependency-graph-mcp
18
20
  ```
19
21
 
20
22
  ## MCP Tools
@@ -44,7 +46,7 @@ Analyze the impact of changing a specific package.
44
46
 
45
47
  ```json
46
48
  {
47
- "package": "@codespaces/terminal",
49
+ "package": "@ebowwa/terminal",
48
50
  "includeTransitive": true,
49
51
  "format": "tree"
50
52
  }
@@ -76,7 +78,7 @@ Get detailed information about a specific package.
76
78
 
77
79
  ```json
78
80
  {
79
- "package": "@codespaces/ssh"
81
+ "package": "@ebowwa/ssh"
80
82
  }
81
83
  ```
82
84
 
@@ -104,10 +106,10 @@ Add to your MCP config:
104
106
  dependency_graph(format="mermaid")
105
107
  ```
106
108
 
107
- ### What depends on `@codespaces/ssh`?
109
+ ### What depends on `@ebowwa/ssh`?
108
110
 
109
111
  ```
110
- impact_analysis(package="@codespaces/ssh", format="tree")
112
+ impact_analysis(package="@ebowwa/ssh", format="tree")
111
113
  ```
112
114
 
113
115
  ### Find circular dependencies
package/dist/index.js CHANGED
@@ -13729,8 +13729,8 @@ function collectTransitive(graph, packageName, visited, result) {
13729
13729
  }
13730
13730
  }
13731
13731
  var server = new Server({
13732
- name: "@mcp/dependency-graph",
13733
- version: "0.1.0"
13732
+ name: "@ebowwa/dependency-graph-mcp",
13733
+ version: "1.0.0"
13734
13734
  }, {
13735
13735
  capabilities: {
13736
13736
  tools: {}
@@ -13899,7 +13899,7 @@ async function main() {
13899
13899
  });
13900
13900
  const transport = new StdioServerTransport;
13901
13901
  await server.connect(transport);
13902
- console.error("[MCP] @mcp/dependency-graph server running on stdio");
13902
+ console.error("[MCP] @ebowwa/dependency-graph-mcp server running on stdio");
13903
13903
  process.stdin.resume();
13904
13904
  }
13905
13905
  main().catch((error2) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ebowwa/dependency-graph-mcp",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "MCP server for dependency graph analysis and visualization in monorepos",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
package/src/index.ts CHANGED
@@ -701,8 +701,8 @@ function collectTransitive(graph: DependencyGraph, packageName: string, visited:
701
701
  // Start the MCP server
702
702
  const server = new Server(
703
703
  {
704
- name: "@mcp/dependency-graph",
705
- version: "0.1.0",
704
+ name: "@ebowwa/dependency-graph-mcp",
705
+ version: "1.0.0",
706
706
  },
707
707
  {
708
708
  capabilities: {
@@ -917,7 +917,7 @@ async function main() {
917
917
  await server.connect(transport);
918
918
 
919
919
  // Log to stderr (doesn't interfere with JSON-RPC)
920
- console.error('[MCP] @mcp/dependency-graph server running on stdio');
920
+ console.error('[MCP] @ebowwa/dependency-graph-mcp server running on stdio');
921
921
 
922
922
  // Keep stdin open for requests
923
923
  process.stdin.resume();