@argosvix/mcp-server 0.30.0-alpha.1 → 0.30.0-alpha.2
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 +5 -5
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# @argosvix/mcp-server
|
|
2
2
|
|
|
3
|
-
**v0.
|
|
3
|
+
**v0.30.0-alpha.2** — Argosvix MCP server lets AI agents (Claude Desktop, Cursor, Codex CLI, custom MCP clients) query, manage, and operate their LLM observability data directly from the conversation. Supports both **stdio** (subprocess) and **HTTP** (remote / self-host) transports.
|
|
4
4
|
|
|
5
|
-
**Surface:**
|
|
5
|
+
**Surface:** 76 tools (72 generally available + 4 founder-ops scoped) / 3 resources / 8 resource templates / 3 prompts. Autonomous-AI-ops endpoints (`get_account_health` / `detect_anomaly` / `propose_alert_rules` / `classify_calls_batch` / `propose_eval_criteria`) plus runtime control plane (budget gates / policy gates / human-approval gates) complete the "agent that can both observe AND act" narrative. See [CHANGELOG.md](./CHANGELOG.md) for release history.
|
|
6
6
|
|
|
7
7
|
[](https://npmjs.com/package/@argosvix/mcp-server)
|
|
8
8
|
[](https://opensource.org/licenses/MIT)
|
|
@@ -36,14 +36,14 @@ Edit your Claude Desktop config:
|
|
|
36
36
|
"argosvix": {
|
|
37
37
|
"command": "argosvix-mcp",
|
|
38
38
|
"env": {
|
|
39
|
-
"ARGOSVIX_API_KEY": "
|
|
39
|
+
"ARGOSVIX_API_KEY": "argk_..."
|
|
40
40
|
}
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
43
|
}
|
|
44
44
|
```
|
|
45
45
|
|
|
46
|
-
Restart Claude Desktop. All
|
|
46
|
+
Restart Claude Desktop. All 76 tools appear under the `argosvix__` prefix (e.g. `argosvix__query_calls`, `argosvix__get_account_health`, `argosvix__create_budget_gate`).
|
|
47
47
|
|
|
48
48
|
## Configure (Cursor)
|
|
49
49
|
|
|
@@ -55,7 +55,7 @@ Edit `~/.cursor/mcp.json`:
|
|
|
55
55
|
"argosvix": {
|
|
56
56
|
"command": "argosvix-mcp",
|
|
57
57
|
"env": {
|
|
58
|
-
"ARGOSVIX_API_KEY": "
|
|
58
|
+
"ARGOSVIX_API_KEY": "argk_..."
|
|
59
59
|
}
|
|
60
60
|
}
|
|
61
61
|
}
|
package/dist/version.d.ts
CHANGED
|
@@ -11,5 +11,5 @@
|
|
|
11
11
|
* 2. packages/mcp-server/package.json の `version` も同 値に更新
|
|
12
12
|
* 3. `npm run build && npx vitest run` を pass させてから commit
|
|
13
13
|
*/
|
|
14
|
-
export declare const MCP_VERSION: "0.
|
|
14
|
+
export declare const MCP_VERSION: "0.30.0-alpha.2";
|
|
15
15
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@argosvix/mcp-server",
|
|
3
|
-
"version": "0.30.0-alpha.
|
|
4
|
-
"
|
|
3
|
+
"version": "0.30.0-alpha.2",
|
|
4
|
+
"mcpName": "com.argosvix/server",
|
|
5
|
+
"description": "Argosvix MCP server — AI agent から traces / cost / alert / annotations / eval-criteria / prompts / safety / eval-runs / llm-budget / budget-gate / policy-gate / approvals / members / saved-views / audit-log / projects / account-health / alert-proposals / anomaly-detection / classify-batch / eval-criteria-propose / purge-expired-plaintext / retry-failed-webhook / auto-silence-noisy-alert を直接 query / 監査 / 受領 / 調整するための Model Context Protocol server (stdio + HTTP transport、 tools 76 件 / resources 3 件 + template 8 件 / prompts 3 件、 stdio で resources subscribe + polling 60s 更新通知).",
|
|
5
6
|
"license": "MIT",
|
|
6
7
|
"type": "module",
|
|
7
8
|
"main": "dist/index.js",
|