Overview
The jira-service MCP server is a project that allows for simple note storage and management using a custom URI scheme, with functionalities to create summaries of notes.
To use this server, you need to configure it properly, install the required dependencies, and then you can add notes or create summaries by using the provided commands.
- Custom note storage using 'note://' URI scheme. - Ability to summarize notes with a specified detail level. - Simple command-line tools to add and manage notes.
- Storing quick notes for project management.
- Summarizing meeting notes for better clarity.
- Managing personal notes with easy retrieval.
Add to your AI client
Use these steps to connect Jira communication server MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"jira-mcp-server-ks-gen-ai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-jira-mcp-server-ks-gen-ai"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"jira-mcp-server-ks-gen-ai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-jira-mcp-server-ks-gen-ai"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"jira-mcp-server-ks-gen-ai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-jira-mcp-server-ks-gen-ai"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"jira-mcp-server-ks-gen-ai": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-jira-mcp-server-ks-gen-ai"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"jira-mcp-server-ks-gen-ai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-jira-mcp-server-ks-gen-ai"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"jira-mcp-server-ks-gen-ai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-jira-mcp-server-ks-gen-ai"
]
}
}
}FAQ
How do I add a new note?
You can add a new note using the 'add-note' command which requires 'name' and 'content' as arguments.
Can I customize the summary detail level?
Yes! When summarizing notes, you can provide an optional 'style' argument to generate a brief or detailed summary.
What platforms does this server support?
The server is designed for MacOS and Windows environments as per the installation instructions.