mcp-dataverse 0.1.3 → 0.1.5
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 +0 -48
- package/package.json +1 -1
- package/server.json +2 -2
package/README.md
CHANGED
|
@@ -218,54 +218,6 @@ GitHub Copilot → stdio → MCP Server → Tool Router → DataverseClient →
|
|
|
218
218
|
|
|
219
219
|
---
|
|
220
220
|
|
|
221
|
-
## Docker
|
|
222
|
-
|
|
223
|
-
The server ships as a single-process stdio MCP server — no HTTP port is exposed.
|
|
224
|
-
**MSAL client credentials** is the recommended auth mode for containers; `PAC_CLI` mode requires an interactive device-code flow and is not suitable for container environments.
|
|
225
|
-
|
|
226
|
-
### Build the image
|
|
227
|
-
|
|
228
|
-
```bash
|
|
229
|
-
docker build -t mcp-dataverse .
|
|
230
|
-
```
|
|
231
|
-
|
|
232
|
-
### Run with MSAL client credentials
|
|
233
|
-
|
|
234
|
-
```bash
|
|
235
|
-
docker run --rm -i \
|
|
236
|
-
-e ENVIRONMENT_URL=https://yourorg.crm.dynamics.com \
|
|
237
|
-
-e CLIENT_ID=your-client-id \
|
|
238
|
-
-e CLIENT_SECRET=your-client-secret \
|
|
239
|
-
-e TENANT_ID=your-tenant-id \
|
|
240
|
-
mcp-dataverse
|
|
241
|
-
```
|
|
242
|
-
|
|
243
|
-
> The app registration must have the **Dynamics CRM → user_impersonation** API permission and a Dataverse security role assigned.
|
|
244
|
-
|
|
245
|
-
### Claude Desktop config (Docker)
|
|
246
|
-
|
|
247
|
-
Add the following to your Claude Desktop `claude_desktop_config.json`:
|
|
248
|
-
|
|
249
|
-
```json
|
|
250
|
-
{
|
|
251
|
-
"mcpServers": {
|
|
252
|
-
"dataverse": {
|
|
253
|
-
"command": "docker",
|
|
254
|
-
"args": [
|
|
255
|
-
"run", "--rm", "-i",
|
|
256
|
-
"-e", "ENVIRONMENT_URL=https://yourorg.crm.dynamics.com",
|
|
257
|
-
"-e", "CLIENT_ID=your-client-id",
|
|
258
|
-
"-e", "CLIENT_SECRET=your-client-secret",
|
|
259
|
-
"-e", "TENANT_ID=your-tenant-id",
|
|
260
|
-
"mcp-dataverse"
|
|
261
|
-
]
|
|
262
|
-
}
|
|
263
|
-
}
|
|
264
|
-
}
|
|
265
|
-
```
|
|
266
|
-
|
|
267
|
-
---
|
|
268
|
-
|
|
269
221
|
## Troubleshooting
|
|
270
222
|
|
|
271
223
|
| Symptom | Fix |
|
package/package.json
CHANGED
package/server.json
CHANGED
|
@@ -7,12 +7,12 @@
|
|
|
7
7
|
"url": "https://github.com/codeurali/mcp-dataverse",
|
|
8
8
|
"source": "github"
|
|
9
9
|
},
|
|
10
|
-
"version": "0.1.
|
|
10
|
+
"version": "0.1.5",
|
|
11
11
|
"packages": [
|
|
12
12
|
{
|
|
13
13
|
"registryType": "npm",
|
|
14
14
|
"identifier": "mcp-dataverse",
|
|
15
|
-
"version": "0.1.
|
|
15
|
+
"version": "0.1.5",
|
|
16
16
|
"transport": {
|
|
17
17
|
"type": "stdio"
|
|
18
18
|
},
|