mcp-consultant-tools 28.0.0 → 29.0.0
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/build/cli.d.ts +10 -0
- package/build/cli.d.ts.map +1 -0
- package/build/cli.js +164 -0
- package/build/cli.js.map +1 -0
- package/build/index.d.ts +8 -7
- package/build/index.d.ts.map +1 -1
- package/build/index.js +41 -8
- package/build/index.js.map +1 -1
- package/package.json +27 -19
package/build/cli.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* mcp-consultant-tools Meta CLI
|
|
4
|
+
*
|
|
5
|
+
* Discovery CLI that lists all available service CLIs and their packages.
|
|
6
|
+
* This does NOT wrap individual CLIs — it serves as a directory to help
|
|
7
|
+
* users find the right CLI for their integration.
|
|
8
|
+
*/
|
|
9
|
+
export {};
|
|
10
|
+
//# sourceMappingURL=cli.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":";AAEA;;;;;;GAMG"}
|
package/build/cli.js
ADDED
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* mcp-consultant-tools Meta CLI
|
|
4
|
+
*
|
|
5
|
+
* Discovery CLI that lists all available service CLIs and their packages.
|
|
6
|
+
* This does NOT wrap individual CLIs — it serves as a directory to help
|
|
7
|
+
* users find the right CLI for their integration.
|
|
8
|
+
*/
|
|
9
|
+
import { createCliProgram } from '@mcp-consultant-tools/core';
|
|
10
|
+
const SERVICE_CLIS = [
|
|
11
|
+
{
|
|
12
|
+
package: '@mcp-consultant-tools/powerplatform',
|
|
13
|
+
binary: 'mcp-pp-cli',
|
|
14
|
+
description: 'PowerPlatform read-only (metadata, flows, apps, views)',
|
|
15
|
+
toolCount: '46',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
package: '@mcp-consultant-tools/powerplatform-customization',
|
|
19
|
+
binary: 'mcp-pp-custom-cli',
|
|
20
|
+
description: 'PowerPlatform schema changes (entities, fields, solutions)',
|
|
21
|
+
toolCount: '70',
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
package: '@mcp-consultant-tools/powerplatform-data',
|
|
25
|
+
binary: 'mcp-pp-data-cli',
|
|
26
|
+
description: 'PowerPlatform data CRUD (records, batch operations)',
|
|
27
|
+
toolCount: '10',
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
package: '@mcp-consultant-tools/azure-devops',
|
|
31
|
+
binary: 'mcp-ado-cli',
|
|
32
|
+
description: 'Azure DevOps (wikis, work items, PRs, builds, sync)',
|
|
33
|
+
toolCount: '46',
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
package: '@mcp-consultant-tools/azure-devops-admin',
|
|
37
|
+
binary: 'mcp-ado-admin-cli',
|
|
38
|
+
description: 'Azure DevOps admin (pipelines, agents, environments)',
|
|
39
|
+
toolCount: '60',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
package: '@mcp-consultant-tools/azure-management',
|
|
43
|
+
binary: 'mcp-azure-mgmt-cli',
|
|
44
|
+
description: 'Azure ARM API (resource groups, deployments, RBAC)',
|
|
45
|
+
toolCount: '26',
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
package: '@mcp-consultant-tools/azure-data-factory',
|
|
49
|
+
binary: 'mcp-adf-cli',
|
|
50
|
+
description: 'Azure Data Factory (pipelines, datasets, triggers)',
|
|
51
|
+
toolCount: '24',
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
package: '@mcp-consultant-tools/azure-storage',
|
|
55
|
+
binary: 'mcp-storage-cli',
|
|
56
|
+
description: 'Azure Storage (blobs, queues, tables, file shares)',
|
|
57
|
+
toolCount: '47',
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
package: '@mcp-consultant-tools/azure-sql',
|
|
61
|
+
binary: 'mcp-sql-cli',
|
|
62
|
+
description: 'Azure SQL (queries, schema, stored procedures)',
|
|
63
|
+
toolCount: '11',
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
package: '@mcp-consultant-tools/azure-b2c',
|
|
67
|
+
binary: 'mcp-azure-b2c-cli',
|
|
68
|
+
description: 'Azure AD B2C (users, policies, applications)',
|
|
69
|
+
toolCount: '11',
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
package: '@mcp-consultant-tools/application-insights',
|
|
73
|
+
binary: 'mcp-appins-cli',
|
|
74
|
+
description: 'Application Insights (telemetry, queries, metrics)',
|
|
75
|
+
toolCount: '10',
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
package: '@mcp-consultant-tools/log-analytics',
|
|
79
|
+
binary: 'mcp-loganalytics-cli',
|
|
80
|
+
description: 'Log Analytics (KQL queries, workspaces, alerts)',
|
|
81
|
+
toolCount: '13',
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
package: '@mcp-consultant-tools/service-bus',
|
|
85
|
+
binary: 'mcp-sb-cli',
|
|
86
|
+
description: 'Service Bus (queues, topics, messages)',
|
|
87
|
+
toolCount: '8',
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
package: '@mcp-consultant-tools/sharepoint',
|
|
91
|
+
binary: 'mcp-spo-cli',
|
|
92
|
+
description: 'SharePoint Online (lists, documents, sites)',
|
|
93
|
+
toolCount: '16',
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
package: '@mcp-consultant-tools/figma',
|
|
97
|
+
binary: 'mcp-figma-cli',
|
|
98
|
+
description: 'Figma (design data, semantic extract, ADO stories)',
|
|
99
|
+
toolCount: '4',
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
package: '@mcp-consultant-tools/github-enterprise',
|
|
103
|
+
binary: 'mcp-ghe-cli',
|
|
104
|
+
description: 'GitHub Enterprise (repos, issues, PRs, actions)',
|
|
105
|
+
toolCount: '22',
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
package: '@mcp-consultant-tools/rest-api',
|
|
109
|
+
binary: 'mcp-rest-api-cli',
|
|
110
|
+
description: 'Generic REST API (HTTP requests with auth)',
|
|
111
|
+
toolCount: '4',
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
package: '@mcp-consultant-tools/teams',
|
|
115
|
+
binary: 'mcp-teams-cli',
|
|
116
|
+
description: 'Microsoft Teams (channels, messages, chats)',
|
|
117
|
+
toolCount: '7',
|
|
118
|
+
},
|
|
119
|
+
];
|
|
120
|
+
const program = createCliProgram({
|
|
121
|
+
name: 'mcp-tools-cli',
|
|
122
|
+
description: 'MCP Consultant Tools - discovery CLI for all available service packages',
|
|
123
|
+
version: '28.0.0-beta.8',
|
|
124
|
+
});
|
|
125
|
+
program
|
|
126
|
+
.command('list')
|
|
127
|
+
.description('List all available service CLI packages')
|
|
128
|
+
.action(() => {
|
|
129
|
+
console.log('');
|
|
130
|
+
console.log('Available MCP Consultant Tools CLI packages:');
|
|
131
|
+
console.log('='.repeat(95));
|
|
132
|
+
console.log('');
|
|
133
|
+
console.log(padRight('Binary', 24) +
|
|
134
|
+
padRight('Tools', 7) +
|
|
135
|
+
'Description');
|
|
136
|
+
console.log('-'.repeat(95));
|
|
137
|
+
for (const svc of SERVICE_CLIS) {
|
|
138
|
+
console.log(padRight(svc.binary, 24) +
|
|
139
|
+
padRight(svc.toolCount, 7) +
|
|
140
|
+
svc.description);
|
|
141
|
+
}
|
|
142
|
+
console.log('');
|
|
143
|
+
console.log('-'.repeat(95));
|
|
144
|
+
console.log(`Total: ${SERVICE_CLIS.length} packages`);
|
|
145
|
+
console.log('');
|
|
146
|
+
console.log('Usage:');
|
|
147
|
+
console.log(' npx --package=<package> <binary> --help');
|
|
148
|
+
console.log('');
|
|
149
|
+
console.log('Example:');
|
|
150
|
+
console.log(' npx --package=@mcp-consultant-tools/azure-devops mcp-ado-cli --help');
|
|
151
|
+
console.log(' npx --package=@mcp-consultant-tools/powerplatform mcp-pp-cli --help');
|
|
152
|
+
console.log('');
|
|
153
|
+
});
|
|
154
|
+
program.parseAsync(process.argv).catch((error) => {
|
|
155
|
+
console.error('CLI error:', error.message);
|
|
156
|
+
process.exit(1);
|
|
157
|
+
});
|
|
158
|
+
/* ------------------------------------------------------------------ */
|
|
159
|
+
/* Helpers */
|
|
160
|
+
/* ------------------------------------------------------------------ */
|
|
161
|
+
function padRight(str, len) {
|
|
162
|
+
return str.length >= len ? str + ' ' : str + ' '.repeat(len - str.length);
|
|
163
|
+
}
|
|
164
|
+
//# sourceMappingURL=cli.js.map
|
package/build/cli.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cli.js","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":"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"}
|
package/build/index.d.ts
CHANGED
|
@@ -2,11 +2,12 @@
|
|
|
2
2
|
/**
|
|
3
3
|
* Register all MCP Consultant Tools
|
|
4
4
|
*
|
|
5
|
-
* This meta-package combines all
|
|
6
|
-
* - PowerPlatform (read-only:
|
|
7
|
-
* - PowerPlatform Customization (schema changes:
|
|
8
|
-
* - PowerPlatform Data (CRUD:
|
|
9
|
-
* - Azure DevOps (wikis, work items)
|
|
5
|
+
* This meta-package combines all 18 service packages:
|
|
6
|
+
* - PowerPlatform (read-only: 46 tools, 12 prompts)
|
|
7
|
+
* - PowerPlatform Customization (schema changes: 70 tools)
|
|
8
|
+
* - PowerPlatform Data (data CRUD: 10 tools)
|
|
9
|
+
* - Azure DevOps (wikis, work items, PRs, builds)
|
|
10
|
+
* - Azure DevOps Admin (pipelines, environments, service connections)
|
|
10
11
|
* - Figma (design data extraction)
|
|
11
12
|
* - Application Insights (telemetry, exceptions, performance)
|
|
12
13
|
* - Log Analytics (logs, Azure Functions troubleshooting)
|
|
@@ -17,9 +18,9 @@
|
|
|
17
18
|
* - Azure AD B2C (user management, password reset, groups)
|
|
18
19
|
* - Azure Data Factory (pipeline execution, monitoring, error debugging)
|
|
19
20
|
* - Azure Management (ARM API - Function Apps, App Services, Key Vaults, Storage, SQL, Monitoring)
|
|
21
|
+
* - Azure Storage (blobs, queues, tables, file shares)
|
|
22
|
+
* - REST API (generic HTTP requests with auth)
|
|
20
23
|
* - Teams (channel messages, adaptive cards for release announcements)
|
|
21
|
-
*
|
|
22
|
-
* Total: 237 tools + 51 prompts
|
|
23
24
|
*/
|
|
24
25
|
export declare function registerAllTools(server: any): void;
|
|
25
26
|
//# sourceMappingURL=index.d.ts.map
|
package/build/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAyBA;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,wBAAgB,gBAAgB,CAAC,MAAM,EAAE,GAAG,QAiF3C"}
|
package/build/index.js
CHANGED
|
@@ -18,14 +18,19 @@ import { registerAzureB2CTools } from "@mcp-consultant-tools/azure-b2c";
|
|
|
18
18
|
import { registerAzureDataFactoryTools } from "@mcp-consultant-tools/azure-data-factory";
|
|
19
19
|
import { registerAzureManagementTools } from "@mcp-consultant-tools/azure-management";
|
|
20
20
|
import { registerTeamsTools } from "@mcp-consultant-tools/teams";
|
|
21
|
+
import { registerAzureDevOpsAdminTools } from "@mcp-consultant-tools/azure-devops-admin";
|
|
22
|
+
import { registerAzureStorageTools } from "@mcp-consultant-tools/azure-storage";
|
|
23
|
+
import { registerOnePasswordTools } from "@mcp-consultant-tools/1password";
|
|
24
|
+
import { registerRestApiTools } from "@mcp-consultant-tools/rest-api";
|
|
21
25
|
/**
|
|
22
26
|
* Register all MCP Consultant Tools
|
|
23
27
|
*
|
|
24
|
-
* This meta-package combines all
|
|
25
|
-
* - PowerPlatform (read-only:
|
|
26
|
-
* - PowerPlatform Customization (schema changes:
|
|
27
|
-
* - PowerPlatform Data (CRUD:
|
|
28
|
-
* - Azure DevOps (wikis, work items)
|
|
28
|
+
* This meta-package combines all 18 service packages:
|
|
29
|
+
* - PowerPlatform (read-only: 46 tools, 12 prompts)
|
|
30
|
+
* - PowerPlatform Customization (schema changes: 70 tools)
|
|
31
|
+
* - PowerPlatform Data (data CRUD: 10 tools)
|
|
32
|
+
* - Azure DevOps (wikis, work items, PRs, builds)
|
|
33
|
+
* - Azure DevOps Admin (pipelines, environments, service connections)
|
|
29
34
|
* - Figma (design data extraction)
|
|
30
35
|
* - Application Insights (telemetry, exceptions, performance)
|
|
31
36
|
* - Log Analytics (logs, Azure Functions troubleshooting)
|
|
@@ -36,9 +41,9 @@ import { registerTeamsTools } from "@mcp-consultant-tools/teams";
|
|
|
36
41
|
* - Azure AD B2C (user management, password reset, groups)
|
|
37
42
|
* - Azure Data Factory (pipeline execution, monitoring, error debugging)
|
|
38
43
|
* - Azure Management (ARM API - Function Apps, App Services, Key Vaults, Storage, SQL, Monitoring)
|
|
44
|
+
* - Azure Storage (blobs, queues, tables, file shares)
|
|
45
|
+
* - REST API (generic HTTP requests with auth)
|
|
39
46
|
* - Teams (channel messages, adaptive cards for release announcements)
|
|
40
|
-
*
|
|
41
|
-
* Total: 237 tools + 51 prompts
|
|
42
47
|
*/
|
|
43
48
|
export function registerAllTools(server) {
|
|
44
49
|
console.error("Registering all MCP Consultant Tools...");
|
|
@@ -88,8 +93,36 @@ export function registerAllTools(server) {
|
|
|
88
93
|
catch (error) {
|
|
89
94
|
console.error("⚠️ Teams skipped:", error.message);
|
|
90
95
|
}
|
|
96
|
+
// Azure DevOps Admin (optional - pipeline management, environments, service connections)
|
|
97
|
+
try {
|
|
98
|
+
registerAzureDevOpsAdminTools(server);
|
|
99
|
+
}
|
|
100
|
+
catch (error) {
|
|
101
|
+
console.error("⚠️ Azure DevOps Admin skipped:", error.message);
|
|
102
|
+
}
|
|
103
|
+
// Azure Storage (optional - blobs, queues, tables, file shares)
|
|
104
|
+
try {
|
|
105
|
+
registerAzureStorageTools(server);
|
|
106
|
+
}
|
|
107
|
+
catch (error) {
|
|
108
|
+
console.error("⚠️ Azure Storage skipped:", error.message);
|
|
109
|
+
}
|
|
110
|
+
// REST API (optional - generic HTTP requests with auth)
|
|
111
|
+
try {
|
|
112
|
+
registerRestApiTools(server);
|
|
113
|
+
}
|
|
114
|
+
catch (error) {
|
|
115
|
+
console.error("⚠️ REST API skipped:", error.message);
|
|
116
|
+
}
|
|
117
|
+
// 1Password (optional - vault and item management)
|
|
118
|
+
try {
|
|
119
|
+
registerOnePasswordTools(server);
|
|
120
|
+
}
|
|
121
|
+
catch (error) {
|
|
122
|
+
console.error("⚠️ 1Password skipped:", error.message);
|
|
123
|
+
}
|
|
91
124
|
console.error("All tools registered successfully!");
|
|
92
|
-
console.error("Total integrations:
|
|
125
|
+
console.error("Total integrations: 18 services");
|
|
93
126
|
}
|
|
94
127
|
// CLI entry point (standalone execution)
|
|
95
128
|
// Uses realpathSync to resolve symlinks created by npx
|
package/build/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AACA,OAAO,EAAE,oBAAoB,EAAE,MAAM,2CAA2C,CAAC;AACjF,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AACzC,OAAO,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AACvC,OAAO,EAAE,eAAe,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAC;AAC9E,OAAO,EAAE,0BAA0B,EAAE,MAAM,qCAAqC,CAAC;AACjF,OAAO,EAAE,uCAAuC,EAAE,MAAM,mDAAmD,CAAC;AAC5G,OAAO,EAAE,8BAA8B,EAAE,MAAM,0CAA0C,CAAC;AAC1F,OAAO,EAAE,wBAAwB,EAAE,MAAM,oCAAoC,CAAC;AAC9E,OAAO,EAAE,kBAAkB,EAAE,MAAM,6BAA6B,CAAC;AACjE,OAAO,EAAE,gCAAgC,EAAE,MAAM,4CAA4C,CAAC;AAC9F,OAAO,EAAE,yBAAyB,EAAE,MAAM,qCAAqC,CAAC;AAChF,OAAO,EAAE,qBAAqB,EAAE,MAAM,iCAAiC,CAAC;AACxE,OAAO,EAAE,uBAAuB,EAAE,MAAM,mCAAmC,CAAC;AAC5E,OAAO,EAAE,uBAAuB,EAAE,MAAM,kCAAkC,CAAC;AAC3E,OAAO,EAAE,6BAA6B,EAAE,MAAM,yCAAyC,CAAC;AACxF,OAAO,EAAE,qBAAqB,EAAE,MAAM,iCAAiC,CAAC;AACxE,OAAO,EAAE,6BAA6B,EAAE,MAAM,0CAA0C,CAAC;AACzF,OAAO,EAAE,4BAA4B,EAAE,MAAM,wCAAwC,CAAC;AACtF,OAAO,EAAE,kBAAkB,EAAE,MAAM,6BAA6B,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-consultant-tools",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "29.0.0",
|
|
4
4
|
"description": "Complete MCP Consultant Tools package with all integrations: PowerPlatform, Azure DevOps, Azure Management, Figma, Application Insights, Log Analytics, Azure SQL, Service Bus, SharePoint, GitHub Enterprise, and Azure AD B2C",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./build/index.js",
|
|
7
7
|
"types": "./build/index.d.ts",
|
|
8
|
-
"bin":
|
|
8
|
+
"bin": {
|
|
9
|
+
"mcp-consultant-tools": "build/index.js",
|
|
10
|
+
"mcp-tools-cli": "build/cli.js"
|
|
11
|
+
},
|
|
9
12
|
"exports": {
|
|
10
13
|
".": {
|
|
11
14
|
"import": "./build/index.js",
|
|
@@ -54,23 +57,28 @@
|
|
|
54
57
|
"node": ">=16.0.0"
|
|
55
58
|
},
|
|
56
59
|
"dependencies": {
|
|
57
|
-
"@mcp-consultant-tools/application-insights": "
|
|
58
|
-
"@mcp-consultant-tools/azure-b2c": "
|
|
59
|
-
"@mcp-consultant-tools/azure-data-factory": "
|
|
60
|
-
"@mcp-consultant-tools/azure-devops": "
|
|
61
|
-
"@mcp-consultant-tools/azure-
|
|
62
|
-
"@mcp-consultant-tools/azure-
|
|
63
|
-
"@mcp-consultant-tools/
|
|
64
|
-
"@mcp-consultant-tools/
|
|
65
|
-
"@mcp-consultant-tools/
|
|
66
|
-
"@mcp-consultant-tools/
|
|
67
|
-
"@mcp-consultant-tools/
|
|
68
|
-
"@mcp-consultant-tools/
|
|
69
|
-
"@mcp-consultant-tools/
|
|
70
|
-
"@mcp-consultant-tools/
|
|
71
|
-
"@mcp-consultant-tools/
|
|
72
|
-
"@mcp-consultant-tools/
|
|
73
|
-
"@
|
|
60
|
+
"@mcp-consultant-tools/application-insights": "29.0.0",
|
|
61
|
+
"@mcp-consultant-tools/azure-b2c": "29.0.0",
|
|
62
|
+
"@mcp-consultant-tools/azure-data-factory": "29.0.0",
|
|
63
|
+
"@mcp-consultant-tools/azure-devops": "29.0.0",
|
|
64
|
+
"@mcp-consultant-tools/azure-devops-admin": "29.0.0",
|
|
65
|
+
"@mcp-consultant-tools/azure-management": "29.0.0",
|
|
66
|
+
"@mcp-consultant-tools/azure-storage": "29.0.0",
|
|
67
|
+
"@mcp-consultant-tools/azure-sql": "29.0.0",
|
|
68
|
+
"@mcp-consultant-tools/core": "29.0.0",
|
|
69
|
+
"@mcp-consultant-tools/figma": "29.0.0",
|
|
70
|
+
"@mcp-consultant-tools/github-enterprise": "29.0.0",
|
|
71
|
+
"@mcp-consultant-tools/log-analytics": "29.0.0",
|
|
72
|
+
"@mcp-consultant-tools/1password": "29.0.0",
|
|
73
|
+
"@mcp-consultant-tools/rest-api": "29.0.0",
|
|
74
|
+
"@mcp-consultant-tools/powerplatform": "29.0.0",
|
|
75
|
+
"@mcp-consultant-tools/powerplatform-customization": "29.0.0",
|
|
76
|
+
"@mcp-consultant-tools/powerplatform-data": "29.0.0",
|
|
77
|
+
"@mcp-consultant-tools/service-bus": "29.0.0",
|
|
78
|
+
"@mcp-consultant-tools/sharepoint": "29.0.0",
|
|
79
|
+
"@mcp-consultant-tools/teams": "29.0.0",
|
|
80
|
+
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
81
|
+
"commander": "^14.0.3"
|
|
74
82
|
},
|
|
75
83
|
"devDependencies": {
|
|
76
84
|
"@types/node": "^22.10.5",
|