@adrata/adrata-mcp 1.0.41 → 1.0.42

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/api-bridge.js CHANGED
@@ -216,6 +216,19 @@ const ALLOWED_PREFIXES = [
216
216
  // write like any other; the strategic commitment itself still moves through
217
217
  // spoq/ PRs (company/decisions/2026-08-06-spoq-roadmap-sync.md).
218
218
  '/api/v1/work-scopes',
219
+ // The products and capability catalog those containers deliver against —
220
+ // what the Products, Capabilities and Roadmap surfaces read. Named
221
+ // `work-capabilities` rather than `capabilities` because `Surface::Core`
222
+ // already mounts an unrelated `/capabilities` router with a differently-named
223
+ // path parameter, and two routers on one prefix is a hard axum panic at
224
+ // construction (see mounts/crm.rs).
225
+ //
226
+ // It was missing while every sibling board family was present, so an agent
227
+ // could read every card in the workspace and not the catalog behind them. The
228
+ // refusal reads as deliberate policy — `path is outside the agent bridge
229
+ // allowlist` — which is why nobody questioned it: an omission and a decision
230
+ // are indistinguishable from the error message.
231
+ '/api/v1/work-capabilities',
219
232
  '/api/v1/workflow-runtime',
220
233
  '/api/v1/workflows',
221
234
  '/api/v1/workspace',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adrata/adrata-mcp",
3
- "version": "1.0.41",
3
+ "version": "1.0.42",
4
4
  "description": "Adrata MCP Server \u2014 connect Claude Code, Codex, Gemini, Cursor, and other AI tools to your CRM. About 275 tools registered at startup for companies, people, deals, actions, buyer groups, warm intros, webhooks and intelligence, plus 65 more behind eight named toolsets you load with enable_toolset.",
5
5
  "type": "module",
6
6
  "main": "server.js",
package/server.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "name": "com.adrata/adrata-mcp",
4
4
  "description": "Adrata revenue-intelligence MCP server: companies, people, opportunities, actions, buyer groups, enrichment, email, and workspace operations for AI agents.",
5
5
  "status": "active",
6
- "version": "1.0.41",
6
+ "version": "1.0.42",
7
7
  "websiteUrl": "https://adrata.com/developers",
8
8
  "repository": {
9
9
  "url": "https://github.com/adrata/adrata",
@@ -15,7 +15,7 @@
15
15
  "registryType": "npm",
16
16
  "registryBaseUrl": "https://registry.npmjs.org",
17
17
  "identifier": "@adrata/adrata-mcp",
18
- "version": "1.0.41",
18
+ "version": "1.0.42",
19
19
  "transport": {
20
20
  "type": "stdio"
21
21
  },