docs: add how-to guide for connecting Copilot and Claude CLI to Jira MCP server#164
Draft
docs: add how-to guide for connecting Copilot and Claude CLI to Jira MCP server#164
Conversation
…Jira MCP server Agent-Logs-Url: https://github.com/edx/frontend-app-enterprise-checkout/sessions/1942cda9-283e-4fb5-a9f7-134436a47aca Co-authored-by: macdiesel <67862+macdiesel@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add instructions for connecting Copilot to Jira MCP server
docs: add how-to guide for connecting Copilot and Claude CLI to Jira MCP server
Mar 31, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No documentation existed for configuring MCP (Model Context Protocol) server connections to Jira for AI development tools used with this repo.
Changes
docs/how_tos/connect_ai_tools_to_jira_mcp.rstcovering:mcp.json) and JetBrains setup; notes web UI limitationclaude_desktop_config.jsonconfigOriginal prompt
Can I do it with claude on the command line?
The following is the prior conversation context from the user's chat exploration (may be truncated):
User: how can I connect co-pilot to the jira MCP server?
Assistant: Here's how to connect GitHub Copilot to a Jira MCP server:
Connecting Copilot to a Jira MCP Server
GitHub Copilot supports MCP (Model Context Protocol) servers, so you can connect it to a Jira MCP server by manually configuring it in your IDE. The steps vary slightly by IDE:
VS Code
mcp.jsonfile to add the Jira MCP server configuration. For example (using a local/stdio server):{ "servers": { "jira": { "command": "npx", "args": ["-y", "jira-mcp-server"], "env": { "JIRA_BASE_URL": "https://your-domain.atlassian.net", "JIRA_API_TOKEN": "YOUR_JIRA_API_TOKEN", "JIRA_EMAIL": "your-email@example.com" } } } }JetBrains IDEs
mcp.jsonwith your Jira config (same structure as above).Key Prerequisites
Finding the Right Jira MCP Server
The exact package/command depends on which Jira MCP server implementation you're using. Common options include:
jira-mcp-server)Check the specific Jira MCP server's documentation for the correct
command,args, and environment variables to use in yourmcp.json.For more details, see Extending GitHub Copilot Chat with MCP servers.
User: can I do this on the website? https://github.com/copilot
Assistant: Yes, you can use MCP on github.com/copilot, but with an important limitation:
MCP on github.com/copilot
The Copilot Chat on the GitHub website does support MCP, but currently it only works with a predefined set of built-in skills from the GitHub MCP server. It does not support connecting custom or third-party MCP servers (like a Jira MCP server) directly through the website.
So unfortunately, you cannot connect a Jira MCP server on github.com/copilot at this time.
Your Options for Jira MCP
To use a Jira MCP server with Copilot, you'll need to use one of the IDE integrations instead:
These allow you to configure custom MCP servers (like Jira) via the
mcp.jsonconfiguration file, as described in my previous response.For more details, see Using the GitHub MCP Server.
User: Can I do it with claude on the command line?
Assistant: Yes! You can use a Jira MCP server with Claude on the command line (via Claude Desktop or the Claude CLI). Here's how:
Using Jira MCP with Claude CLI / Claude Desktop
Claude Desktop
Open (or create) your Claude Desktop config file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonAdd your Jira MCP server configuration:
{ "mcpServers": { "jira": { "command": "npx", "args": ["-y", "jira-mcp-server"], "env": { "JIRA_BASE_URL": "https://your-domain.atlassian.net", "JIRA_API_TOKEN": "YOUR_JIRA_API_TOKEN", "JIRA_EMAIL": "your-email@example.com" } } } }Claude CLI (
claudecommand line tool)If you're using Anthropic's Claude CLI, you can add MCP servers with a command:
Then set the required environment variables, or pass them inline depending on the CLI version.
Key Differences vs. GitHub Copilot
mcp.jsonclaude_desktop_config.jsonThis pull request was created from Copilot chat.