@transcend-io/mcp 0.15.7 → 0.15.9

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.
Files changed (3) hide show
  1. package/README.md +2 -2
  2. package/dist/cli.mjs +1 -1
  3. package/package.json +17 -12
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  > **Beta** — this package is under active development. APIs may change without notice.
4
4
 
5
- Unified Transcend MCP Server that combines all domain tools into a single server. This is the "everything in one place" option — install this package when you want access to all 81 Transcend tools at once.
5
+ Unified Transcend MCP Server that combines all domain tools into a single server. This is the "everything in one place" option — install this package when you want access to every Transcend MCP tool at once.
6
6
 
7
7
  Requires **Node.js ≥ 22.12** (see `engines` in `package.json`).
8
8
 
@@ -118,7 +118,7 @@ See [CONTRIBUTING.md](../../../CONTRIBUTING.md#mcp-servers) for workspace layout
118
118
 
119
119
  This package composes all domain MCP packages via `ToolRegistry`, which aggregates tools from each domain (`getConsentTools`, `getDSRTools`, etc.) into a single tool namespace. A composed `TranscendGraphQLClient` mixes in all domain GraphQL capabilities so each tool has access to the API surface it needs.
120
120
 
121
- If 81 tools is too many for your AI agent, install individual domain packages instead — see the [MCP section of the root README](../../../README.md#mcp-servers).
121
+ If the full tool set is too many for your AI agent, install individual domain packages instead — see the [MCP section of the root README](../../../README.md#mcp-servers).
122
122
 
123
123
  ## Related packages
124
124
 
package/dist/cli.mjs CHANGED
@@ -4,7 +4,7 @@ import { SimpleLogger, buildMcpServer, configureOAuthScopes, createTranscendRest
4
4
  import { getConsentPrompts } from "@transcend-io/mcp-server-consent";
5
5
  import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
6
6
  //#region package.json
7
- var version = "0.15.7";
7
+ var version = "0.15.9";
8
8
  //#endregion
9
9
  //#region src/server-instructions.ts
10
10
  /** MCP initialize instructions for the unified @transcend-io/mcp server. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@transcend-io/mcp",
3
- "version": "0.15.7",
3
+ "version": "0.15.9",
4
4
  "description": "Transcend MCP Server — unified server with all domain tools.",
5
5
  "homepage": "https://github.com/transcend-io/tools/tree/main/packages/mcp/mcp",
6
6
  "license": "Apache-2.0",
@@ -32,22 +32,24 @@
32
32
  "dependencies": {
33
33
  "@modelcontextprotocol/sdk": "^1.29.0",
34
34
  "zod": "^4.3.6",
35
- "@transcend-io/mcp-server-admin": "0.6.6",
36
- "@transcend-io/mcp-server-assessment": "0.5.26",
37
- "@transcend-io/mcp-server-base": "1.7.3",
38
- "@transcend-io/mcp-server-consent": "0.9.2",
39
- "@transcend-io/mcp-server-discovery": "0.5.26",
40
- "@transcend-io/mcp-server-docs": "0.3.24",
41
- "@transcend-io/mcp-server-dsr": "0.8.6",
42
- "@transcend-io/mcp-server-inventory": "0.7.6",
43
- "@transcend-io/mcp-server-preferences": "0.6.6",
44
- "@transcend-io/mcp-server-workflows": "0.5.26"
35
+ "@transcend-io/mcp-server-admin": "0.6.7",
36
+ "@transcend-io/mcp-server-assessment": "0.5.27",
37
+ "@transcend-io/mcp-server-base": "1.7.4",
38
+ "@transcend-io/mcp-server-consent": "0.9.3",
39
+ "@transcend-io/mcp-server-discovery": "0.5.27",
40
+ "@transcend-io/mcp-server-docs": "0.3.25",
41
+ "@transcend-io/mcp-server-dsr": "0.8.7",
42
+ "@transcend-io/mcp-server-inventory": "0.7.7",
43
+ "@transcend-io/mcp-server-preferences": "0.6.7",
44
+ "@transcend-io/mcp-server-workflows": "0.5.27"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@arethetypeswrong/cli": "^0.18.2",
48
+ "@sanity/client": "^7.6.0",
48
49
  "@types/node": "^24.0.0",
49
50
  "publint": "^0.3.18",
50
51
  "tsdown": "^0.21.2",
52
+ "tsx": "4.22.4",
51
53
  "typescript": "^6.0.0",
52
54
  "vitest": "^4.0.18",
53
55
  "@transcend-io/privacy-types": "5.24.0"
@@ -60,6 +62,9 @@
60
62
  "test": "vitest run --config ../../../vitest.config.mcp.ts",
61
63
  "typecheck": "tsc -p tsconfig.json --noEmit",
62
64
  "check:exports": "attw --pack . --ignore-rules cjs-resolves-to-esm",
63
- "check:publint": "publint --level warning --strict --pack pnpm"
65
+ "check:publint": "publint --level warning --strict --pack pnpm",
66
+ "docgen": "NODE_OPTIONS=\"--conditions=@transcend-io/source\" tsx --import ./scripts/register-asset-stubs.mjs scripts/buildMcpDocs.ts",
67
+ "genfiles": "pnpm docgen",
68
+ "sync:sanity": "NODE_OPTIONS=\"--conditions=@transcend-io/source\" tsx scripts/syncMcpGuideToSanity.ts"
64
69
  }
65
70
  }