@transcend-io/mcp 0.6.2 → 0.6.4

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 +5 -5
  2. package/dist/cli.mjs +1 -1
  3. package/package.json +12 -12
package/README.md CHANGED
@@ -42,11 +42,11 @@ This starts a Streamable HTTP server at `http://127.0.0.1:3000/mcp` with a healt
42
42
 
43
43
  ### OAuth client setup
44
44
 
45
- OAuth stdio is the recommended path for MCP clients. Requires **org admin** access to create OAuth clients at [app.transcend.com/admin/oauth-clients](https://app.transcend.com/admin/oauth-clients).
45
+ OAuth stdio is the recommended path for MCP clients. Requires **org admin** access to create OAuth clients at [app.transcend.io/admin/oauth-clients](https://app.transcend.io/admin/oauth-clients).
46
46
 
47
47
  1. Create an OAuth client and copy the **client ID** and **client secret**.
48
- 2. Register `http://127.0.0.1:{port}/callback` use **`127.0.0.1`, not `localhost`**, and ensure the path is `/callback`.
49
- 3. Set `TRANSCEND_OAUTH_REDIRECT_PORT` to the matching port.
48
+ 2. Choose an available localhost port number, then register `http://127.0.0.1:{port}/callback` on the OAuth client (`{port}` is the number you chose). Use **`127.0.0.1`, not `localhost`**, and ensure the path is `/callback`.
49
+ 3. Set `TRANSCEND_OAUTH_REDIRECT_PORT` to the same port number.
50
50
 
51
51
  At startup the server verifies client ID, secret, and redirect URI against Transcend's API. On first tool call it opens a browser for login. Tokens are session-only (in-memory).
52
52
 
@@ -60,9 +60,9 @@ Full setup, troubleshooting, and multi-server guidance: [MCP root README](../REA
60
60
 
61
61
  | Variable | Required (stdio OAuth) | Default | Description |
62
62
  | ------------------------------- | ---------------------- | ------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------- |
63
- | `TRANSCEND_OAUTH_CLIENT_ID` | Yes | — | Client ID from [app.transcend.com/admin/oauth-clients](https://app.transcend.com/admin/oauth-clients) |
63
+ | `TRANSCEND_OAUTH_CLIENT_ID` | Yes | — | Client ID from [app.transcend.io/admin/oauth-clients](https://app.transcend.io/admin/oauth-clients) |
64
64
  | `TRANSCEND_OAUTH_CLIENT_SECRET` | Yes | — | Client secret from the same OAuth clients page |
65
- | `TRANSCEND_OAUTH_REDIRECT_PORT` | Yes | — | Localhost port for the OAuth callback server; **must match the port in your registered redirect URI** |
65
+ | `TRANSCEND_OAUTH_REDIRECT_PORT` | Yes | — | Port number you choose for the OAuth callback server (must be available on your machine); **must match the port in your registered redirect URI** |
66
66
  | `TRANSCEND_OAUTH_REDIRECT_HOST` | No | `127.0.0.1` | Loopback host for the OAuth callback (`127.0.0.1` or `::1` for `http://[::1]:{port}/callback`) |
67
67
  | `TRANSCEND_OAUTH_ISSUER` | No | auto-detected | OAuth issuer URL; production auto-detects region. Test-only override |
68
68
  | `TRANSCEND_API_KEY` | No | — | API key for stdio (alternative to OAuth) or HTTP default auth. Disables OAuth when set alongside client ID |
package/dist/cli.mjs CHANGED
@@ -3,7 +3,7 @@ import { n as ToolRegistry, r as TranscendGraphQLClient, t as UMBRELLA_OAUTH_SCO
3
3
  import { DEFAULT_SOMBRA_URL, SimpleLogger, TranscendRestClient, buildMcpServer, configureOAuthScopes, isOAuthModeEnabled, parseTransportArgs, resolveMcpDashboardUrl, resolveMcpGraphqlUrl, resolveStdioStartupAuthOptional, runMcpHttp } from "@transcend-io/mcp-server-base";
4
4
  import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
5
5
  //#region package.json
6
- var version = "0.6.2";
6
+ var version = "0.6.4";
7
7
  //#endregion
8
8
  //#region src/server-instructions.ts
9
9
  /** 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.6.2",
3
+ "version": "0.6.4",
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,16 +32,16 @@
32
32
  "dependencies": {
33
33
  "@modelcontextprotocol/sdk": "^1.29.0",
34
34
  "zod": "^4.3.6",
35
- "@transcend-io/mcp-server-admin": "0.4.2",
36
- "@transcend-io/mcp-server-assessment": "0.4.2",
37
- "@transcend-io/mcp-server-base": "0.6.0",
38
- "@transcend-io/mcp-server-consent": "0.4.3",
39
- "@transcend-io/mcp-server-discovery": "0.4.2",
40
- "@transcend-io/mcp-server-docs": "0.3.0",
41
- "@transcend-io/mcp-server-inventory": "0.4.2",
42
- "@transcend-io/mcp-server-preferences": "0.4.2",
43
- "@transcend-io/mcp-server-workflows": "0.4.2",
44
- "@transcend-io/mcp-server-dsr": "0.4.2"
35
+ "@transcend-io/mcp-server-admin": "0.4.4",
36
+ "@transcend-io/mcp-server-assessment": "0.4.4",
37
+ "@transcend-io/mcp-server-base": "0.6.1",
38
+ "@transcend-io/mcp-server-consent": "0.4.5",
39
+ "@transcend-io/mcp-server-discovery": "0.4.4",
40
+ "@transcend-io/mcp-server-docs": "0.3.2",
41
+ "@transcend-io/mcp-server-dsr": "0.4.4",
42
+ "@transcend-io/mcp-server-inventory": "0.4.4",
43
+ "@transcend-io/mcp-server-preferences": "0.4.4",
44
+ "@transcend-io/mcp-server-workflows": "0.4.4"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@arethetypeswrong/cli": "^0.18.2",
@@ -50,7 +50,7 @@
50
50
  "tsdown": "^0.21.2",
51
51
  "typescript": "^6.0.0",
52
52
  "vitest": "^4.0.18",
53
- "@transcend-io/privacy-types": "5.4.0"
53
+ "@transcend-io/privacy-types": "5.6.0"
54
54
  },
55
55
  "engines": {
56
56
  "node": ">=22.12.0"