@massa-ai/mcp-client 1.54.1 → 1.55.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.
- package/dist/index.js +2 -7
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -169216,7 +169216,7 @@ var SEARCH_TOOL_DEFINITIONS = [
|
|
|
169216
169216
|
},
|
|
169217
169217
|
{
|
|
169218
169218
|
name: "trace_path",
|
|
169219
|
-
description: "Trace paths through the code graph from a seed symbol, following typed edges (CALLS/DATA_FLOWS/HTTP_CALLS/EMITS/LISTENS). " + "Modes: calls (callers/callees), data_flow (value propagation), cross_service (HTTP/async hops), all. " + "Direction: outbound (what it reaches) | inbound (what reaches it) | both. " + `Use INSTEAD OF grep for callers, dependencies, impact analysis, or data flow tracing. ${STRUCTURAL_FQN_DESCRIPTION}`,
|
|
169219
|
+
description: "Trace paths through the code graph from a seed symbol, following typed edges (CALLS/DATA_FLOWS/HTTP_CALLS/EMITS/LISTENS). " + "Modes: calls (callers/callees), data_flow (value propagation), cross_service (HTTP/async hops), all. " + "Direction: outbound (what it reaches) | inbound (what reaches it) | both. " + "Requires a seed: supply exactly one of function_name, symbol, or qualifiedName (they are aliases). " + `Use INSTEAD OF grep for callers, dependencies, impact analysis, or data flow tracing. ${STRUCTURAL_FQN_DESCRIPTION}`,
|
|
169220
169220
|
apiEndpoint: "/api/v1/symbol/trace",
|
|
169221
169221
|
apiMethod: "GET",
|
|
169222
169222
|
inputSchema: {
|
|
@@ -169280,12 +169280,7 @@ var SEARCH_TOOL_DEFINITIONS = [
|
|
|
169280
169280
|
description: "Optional precondition: the client's last-known `activatedGraphGenerationId`. If it mismatches the current active generation, the tool returns a 412 teaching error."
|
|
169281
169281
|
}
|
|
169282
169282
|
},
|
|
169283
|
-
required: ["projectId"]
|
|
169284
|
-
anyOf: [
|
|
169285
|
-
{ required: ["function_name"] },
|
|
169286
|
-
{ required: ["symbol"] },
|
|
169287
|
-
{ required: ["qualifiedName"] }
|
|
169288
|
-
]
|
|
169283
|
+
required: ["projectId"]
|
|
169289
169284
|
}
|
|
169290
169285
|
},
|
|
169291
169286
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@massa-ai/mcp-client",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.55.0",
|
|
4
4
|
"description": "massa-ai MCP server - Semantic code search, memory, and context compression via Model Context Protocol",
|
|
5
5
|
"author": "luizgmassa",
|
|
6
6
|
"type": "module",
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
"type-check": "tsc --noEmit"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@massa-ai/core": "^1.
|
|
24
|
-
"@massa-ai/shared": "^1.
|
|
23
|
+
"@massa-ai/core": "^1.55.0",
|
|
24
|
+
"@massa-ai/shared": "^1.55.0",
|
|
25
25
|
"@modelcontextprotocol/sdk": "^1.0.0"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|