@transcend-io/mcp 0.4.0 → 0.4.3

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 (2) hide show
  1. package/README.md +3 -13
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @transcend-io/mcp
2
2
 
3
- > **Alpha** — this package is under active development and has not yet been published to npm. APIs may change without notice.
3
+ > **Beta** — this package is under active development. APIs may change without notice.
4
4
 
5
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 70+ Transcend tools at once.
6
6
 
@@ -10,13 +10,13 @@ For local runs from this repository, copy [`secret.env.example`](../../../secret
10
10
 
11
11
  ## Install
12
12
 
13
- When the package is available on npm, install the CLI globally:
13
+ Install the CLI globally:
14
14
 
15
15
  ```bash
16
16
  npm install -g @transcend-io/mcp
17
17
  ```
18
18
 
19
- Until then, run from a checkout of this repository (see **Run from the monorepo** below).
19
+ Or run from a checkout of this repository (see **Run from the monorepo** below).
20
20
 
21
21
  ## Usage
22
22
 
@@ -86,16 +86,6 @@ pnpm -F @transcend-io/mcp exec node ./dist/cli.mjs
86
86
 
87
87
  See [CONTRIBUTING.md](../../../CONTRIBUTING.md#mcp-servers) for workspace layout and `pnpm --filter` workflows.
88
88
 
89
- ### Environment variables
90
-
91
- | Variable | Required | Default | Description |
92
- | ------------------- | -------- | ------------------------------------------ | -------------------------------------------------- |
93
- | `TRANSCEND_API_KEY` | Yes | — | Transcend API key |
94
- | `TRANSCEND_API_URL` | No | `https://api.transcend.io` | GraphQL backend API URL (matches CLI convention) |
95
- | `SOMBRA_URL` | No | `https://multi-tenant.sombra.transcend.io` | Sombra REST API URL (matches CLI / SDK convention) |
96
-
97
- **Monorepo:** keep these in root **`secret.env`** (from [`secret.env.example`](../../../secret.env.example)); see **Run from the monorepo**.
98
-
99
89
  ## Architecture
100
90
 
101
91
  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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@transcend-io/mcp",
3
- "version": "0.4.0",
3
+ "version": "0.4.3",
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,12 +32,12 @@
32
32
  "dependencies": {
33
33
  "@modelcontextprotocol/sdk": "^1.29.0",
34
34
  "zod": "^4.3.6",
35
- "@transcend-io/mcp-server-admin": "0.3.2",
36
- "@transcend-io/mcp-server-assessment": "0.3.2",
35
+ "@transcend-io/mcp-server-admin": "0.3.4",
36
+ "@transcend-io/mcp-server-assessment": "0.3.4",
37
37
  "@transcend-io/mcp-server-base": "0.4.0",
38
- "@transcend-io/mcp-server-consent": "0.2.2",
38
+ "@transcend-io/mcp-server-consent": "0.2.5",
39
39
  "@transcend-io/mcp-server-discovery": "0.3.1",
40
- "@transcend-io/mcp-server-dsr": "0.3.2",
40
+ "@transcend-io/mcp-server-dsr": "0.3.4",
41
41
  "@transcend-io/mcp-server-inventory": "0.3.1",
42
42
  "@transcend-io/mcp-server-preferences": "0.3.1",
43
43
  "@transcend-io/mcp-server-workflows": "0.3.1"