archtracker-mcp 0.3.0 → 0.3.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/dist/cli/index.js +1 -1
- package/dist/cli/index.js.map +1 -1
- package/dist/mcp/index.js +3 -3
- package/dist/mcp/index.js.map +1 -1
- package/package.json +1 -1
package/dist/mcp/index.js
CHANGED
|
@@ -1985,11 +1985,11 @@ var PathTraversalError = class extends Error {
|
|
|
1985
1985
|
// src/mcp/index.ts
|
|
1986
1986
|
var server = new McpServer({
|
|
1987
1987
|
name: "archtracker",
|
|
1988
|
-
version: "0.
|
|
1988
|
+
version: "0.3.1"
|
|
1989
1989
|
});
|
|
1990
1990
|
server.tool(
|
|
1991
1991
|
"generate_map",
|
|
1992
|
-
"Analyze dependency graph of a directory and return file import/export structure as JSON. Supports JS/TS, Python, Rust, Go, Java, C/C++, Ruby, PHP, Swift, Kotlin.",
|
|
1992
|
+
"Analyze dependency graph of a directory and return file import/export structure as JSON. Supports JS/TS, Python, Rust, Go, Java, C/C++, C#, Ruby, PHP, Swift, Kotlin, Dart, Scala.",
|
|
1993
1993
|
{
|
|
1994
1994
|
targetDir: z2.string().default("src").describe("Target directory path (default: src)"),
|
|
1995
1995
|
exclude: z2.array(z2.string()).optional().describe("Array of regex patterns to exclude (e.g. ['test', 'mock'])"),
|
|
@@ -2017,7 +2017,7 @@ server.tool(
|
|
|
2017
2017
|
);
|
|
2018
2018
|
server.tool(
|
|
2019
2019
|
"analyze_existing_architecture",
|
|
2020
|
-
"Comprehensive architecture analysis for existing projects. Shows critical components, circular dependencies, orphan files, coupling hotspots, and directory breakdown. Supports
|
|
2020
|
+
"Comprehensive architecture analysis for existing projects. Shows critical components, circular dependencies, orphan files, coupling hotspots, and directory breakdown. Supports 13 languages.",
|
|
2021
2021
|
{
|
|
2022
2022
|
targetDir: z2.string().default("src").describe("Target directory path (default: src)"),
|
|
2023
2023
|
exclude: z2.array(z2.string()).optional().describe("Array of regex patterns to exclude"),
|