@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 CHANGED
@@ -1,8 +1,8 @@
1
1
  # @argosvix/mcp-server
2
2
 
3
- **v0.28.3-alpha.1** — 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.
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:** 71 tools (67 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.
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
  [![npm version](https://img.shields.io/npm/v/@argosvix/mcp-server)](https://npmjs.com/package/@argosvix/mcp-server)
8
8
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](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": "argosvix_live_..."
39
+ "ARGOSVIX_API_KEY": "argk_..."
40
40
  }
41
41
  }
42
42
  }
43
43
  }
44
44
  ```
45
45
 
46
- Restart Claude Desktop. All 71 tools appear under the `argosvix__` prefix (e.g. `argosvix__query_calls`, `argosvix__get_account_health`, `argosvix__create_budget_gate`).
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": "argosvix_live_..."
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.29.0-alpha.1";
14
+ export declare const MCP_VERSION: "0.30.0-alpha.2";
15
15
  //# sourceMappingURL=version.d.ts.map
package/dist/version.js 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 const MCP_VERSION = "0.29.0-alpha.1";
14
+ export const MCP_VERSION = "0.30.0-alpha.2";
15
15
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "@argosvix/mcp-server",
3
- "version": "0.30.0-alpha.1",
4
- "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 71 件 / resources 3 件 + template 8 件 / prompts 3 件、 stdio で resources subscribe + polling 60s 更新通知).",
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",