Skip to main content
Glama

Jira MCP Server for Cursor

smithery.yaml1.23 kB
# 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: - jiraHost - jiraEmail - jiraApiToken properties: jiraHost: type: string description: Jira host URL (e.g., https://your-domain.atlassian.net) jiraEmail: type: string description: Jira account email jiraApiToken: type: string description: Jira API token port: type: number default: 3000 description: Port on which the MCP server listens commandFunction: # A JS function that produces the CLI command based on the given config to start the MCP on stdio. |- (config) => ({ command: 'node', args: ['dist/server.js'], env: { JIRA_HOST: config.jiraHost, JIRA_EMAIL: config.jiraEmail, JIRA_API_TOKEN: config.jiraApiToken, PORT: config.port?.toString() || '3000' } }) exampleConfig: jiraHost: https://example.atlassian.net jiraEmail: <your_jira_email_here> jiraApiToken: <your_jira_api_token_here> port: 3000

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/kornbed/jira-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server