# 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:
- jiraBaseUrl
- jiraUsername
- jiraApiToken
properties:
jiraBaseUrl:
type: string
description: The base URL of your Jira instance (e.g.,
https://your-domain.atlassian.net)
jiraUsername:
type: string
description: Your Jira username (typically your email address)
jiraApiToken:
type: string
description: Your Jira API token for authentication
httpPort:
type: number
default: 3000
description: HTTP port where the server listens (only applicable in HTTP mode)
commandFunction:
# A function that produces the CLI command to start the MCP on stdio.
|-
(config) => ({
command: 'npm',
args: ['run', 'start:cli'],
env: {
JIRA_BASE_URL: config.jiraBaseUrl,
JIRA_USERNAME: config.jiraUsername,
JIRA_API_TOKEN: config.jiraApiToken,
HTTP_PORT: config.httpPort ? config.httpPort.toString() : '3000',
NODE_ENV: 'cli'
}
})
exampleConfig:
jiraBaseUrl: https://your-domain.atlassian.net
jiraUsername: your-email@example.com
jiraApiToken: your-api-token-here
httpPort: 3000