You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "anythingmcp",
3
-
"version": "0.2.6",
3
+
"version": "0.3.0",
4
4
"description": "Self-hosted MCP gateway for REST, SOAP/WSDL, GraphQL and SQL — turn any API into MCP tools for Claude, ChatGPT, Gemini, Copilot and Cursor. 30+ pre-built adapters, on-prem audit log, OAuth2/RBAC. Open source (AGPL-3.0).",
constMAX_ENTITIES=120;// cost cap: never send more than this to the model
8
8
9
+
// Minimum confidence for an AI-suggested edge to be auto-applied (status 'active')
10
+
// when the workspace opts in. Mirrors the skill auto-apply bar (0.9). The LLM
11
+
// confidence is itself capped at 0.9, so only edges the model rates top-confidence
12
+
// qualify; everything else stays a suggestion for manual review.
13
+
exportconstEDGE_AUTO_APPLY_MIN=0.9;
14
+
9
15
constSYSTEM_PROMPT=`You analyze a software workspace's data entities (drawn from connected SaaS/ERP systems) and infer relationships a naive name-matching heuristic misses.
10
16
11
17
You receive a JSON list of entities, each with a stable "ref", its connector, its name, its input field names ("fields") and the field names its tools RETURN ("outputs").
0 commit comments