-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsmithery.yaml
More file actions
26 lines (26 loc) · 777 Bytes
/
smithery.yaml
File metadata and controls
26 lines (26 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
startCommand:
type: stdio
configSchema:
type: object
properties:
DATAVERSE_ENV_URL:
type: string
title: Dataverse Environment URL
description: >-
Your Dataverse / Power Platform environment URL.
Example: https://yourorg.crm.dynamics.com
MCP_CONFIG_PATH:
type: string
title: Config File Path
description: >-
Optional path to a config.json file (overrides all other env vars).
Recommended for VS Code / Claude Desktop setups.
required: []
commandFunction: |-
(config) => ({
command: "npx",
args: ["-y", "mcp-dataverse"],
env: Object.fromEntries(
Object.entries(config).filter(([, v]) => v !== undefined && v !== "")
)
})