# Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml
startCommand:
type: stdio
configSchema:
# JSON Schema defining the configuration options for the MCP.
type: object
required:
- azureDevOpsOrg
- azureDevOpsProject
- azureDevOpsPat
properties:
azureDevOpsOrg:
type: string
description: Your Azure DevOps organization name.
azureDevOpsProject:
type: string
description: Your Azure DevOps project name.
azureDevOpsPat:
type: string
description: Your Azure DevOps Personal Access Token.
commandFunction:
# A function that produces the CLI command to start the MCP on stdio.
|-
(config) => ({ command: 'node', args: ['build/index.js'], env: { AZURE_DEVOPS_ORG: config.azureDevOpsOrg, AZURE_DEVOPS_PROJECT: config.azureDevOpsProject, AZURE_DEVOPS_PAT: config.azureDevOpsPat } })