@transcend-io/mcp-server-inventory 0.5.10 → 0.6.1
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 +14 -7
- package/dist/cli.mjs +2 -2
- package/dist/graphql-CVYenij2.mjs +2637 -0
- package/dist/graphql-CVYenij2.mjs.map +1 -0
- package/dist/index.d.mts +192 -6
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +2 -2
- package/package.json +3 -3
- package/dist/graphql-BJIrpomr.mjs +0 -951
- package/dist/graphql-BJIrpomr.mjs.map +0 -1
package/README.md
CHANGED
|
@@ -102,15 +102,22 @@ See [CONTRIBUTING.md](../../../CONTRIBUTING.md#mcp-servers) for workspace layout
|
|
|
102
102
|
|
|
103
103
|
## Tools
|
|
104
104
|
|
|
105
|
-
- `inventory_list_data_silos` — List data silos (
|
|
106
|
-
- `inventory_get_data_silo` — Get data silo details
|
|
107
|
-
- `
|
|
108
|
-
- `
|
|
109
|
-
- `
|
|
110
|
-
- `
|
|
105
|
+
- `inventory_list_data_silos` — List data silos (optional `text` / `titles` filters)
|
|
106
|
+
- `inventory_get_data_silo` — Get data silo details (vendor, purposes, owners, subjects, metadata)
|
|
107
|
+
- `inventory_list_catalog_integrations` — Search the integration catalog for valid `integrationName` values (optional `text` filter)
|
|
108
|
+
- `inventory_create_data_silo` — Create a data silo (`integrationName` required; optional display `title` / `description`)
|
|
109
|
+
- `inventory_update_data_silo` — Update a data silo (owners, vendor, purposes, subjects, metadata)
|
|
110
|
+
- `inventory_list_data_points` — List data points (optional `dataSiloId` and `text` filters)
|
|
111
|
+
- `inventory_update_or_create_data_point` — Create/update a datapoint and field-level purpose assignments
|
|
112
|
+
- `inventory_list_sub_data_points` — List sub-data points (includes purposes and categories)
|
|
111
113
|
- `inventory_list_categories` — List data categories
|
|
114
|
+
- `inventory_list_processing_purposes` — List processing purpose subcategories (optional `text` filter)
|
|
115
|
+
- `inventory_write_processing_purpose` — Create or update a processing purpose subcategory
|
|
112
116
|
- `inventory_list_identifiers` — List identifiers
|
|
113
|
-
- `inventory_list_vendors` — List vendors
|
|
117
|
+
- `inventory_list_vendors` — List vendors (contact / DPA / website fields; optional `text` filter)
|
|
118
|
+
- `inventory_write_vendor` — Create or update a vendor (upsert by title or id)
|
|
119
|
+
- `inventory_list_business_entities` — List business entities
|
|
120
|
+
- `inventory_list_data_subjects` — List data subject types
|
|
114
121
|
- `inventory_analyze` — Analyze inventory data
|
|
115
122
|
|
|
116
123
|
## Related packages
|
package/dist/cli.mjs
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { n as INVENTORY_OAUTH_SCOPES, r as getInventoryTools, t as InventoryMixin } from "./graphql-
|
|
2
|
+
import { n as INVENTORY_OAUTH_SCOPES, r as getInventoryTools, t as InventoryMixin } from "./graphql-CVYenij2.mjs";
|
|
3
3
|
import { createMCPServer, createTranscendRestClient } from "@transcend-io/mcp-server-base";
|
|
4
4
|
//#endregion
|
|
5
5
|
//#region src/cli.ts
|
|
6
6
|
createMCPServer({
|
|
7
7
|
name: "transcend-mcp-inventory",
|
|
8
|
-
version: "0.
|
|
8
|
+
version: "0.6.1",
|
|
9
9
|
oauthScopes: INVENTORY_OAUTH_SCOPES,
|
|
10
10
|
getTools: getInventoryTools,
|
|
11
11
|
createClients: ({ auth, sombraUrl, sombraCustomerKey, graphqlUrl, dashboardUrl }) => {
|