Jira MCP Server

Jira MCP Server

A Model Context Protocol server that enables AI applications to interact with Jira issues, projects, and workflows through a standardized interface.

Category
Visit Server

README

Jira MCP Server

CI

A Model Context Protocol (MCP) server that provides seamless integration with Jira instances. This server enables AI applications to interact with Jira issues, projects, and workflows through a standardized interface.

Jira Cloud Migration

The server has been updated to work with the new Jira Cloud instance. To migrate:

  1. Pull the latest changes
cd /path/to/jira-mcp-server && git pull
  1. Update your .env file
JIRA_SERVER_URL=https://redhat.atlassian.net
JIRA_ACCESS_TOKEN=<your-api-token>
JIRA_EMAIL=<your-email>@redhat.com
  1. Get your API token — Go to https://id.atlassian.com/manage-profile/security/api-tokens and click "Create API token"

  2. Reconnect — In Claude Code run /mcp to reconnect, or restart your client (Cursor, Gemini CLI, etc.)

All custom field IDs and work type IDs have been updated in the code. No other changes needed.

Table of Contents

  1. Features
  2. Installation
  3. Configuration
  4. Usage
  5. Client Configuration
  6. Available Tools
  7. Slash Commands
  8. Automatic Update Notifications
  9. Development
  10. Troubleshooting
  11. Advanced Configuration
  12. License & Contributing

Features

  • Issue Management: Search, create, update, and transition Jira issues
  • Team Management: Define teams with multiple members and assign them to issues as watchers
  • Component Aliases: Use short, memorable aliases instead of long component names
  • Watcher Management: Add, remove, and list watchers on issues
  • Issue Linking: Create links between issues with different relationship types (blocks, relates to, etc.)
  • Project Access: List and browse Jira projects and components
  • User Search: Find Jira users by name, email, or username for assignment
  • Comments: Add comments to issues with security levels
  • Time Logging: Log work time on issues with detailed comments
  • Workflow Enforcement: Requires fix_version before transitioning beyond "In Progress"
  • JQL Support: Full Jira Query Language support for advanced searching
  • Rate Limiting: Built-in throttling to respect Jira API limits
  • Async Operations: Fully asynchronous for optimal performance
  • Type Safety: Pydantic models for structured data validation
  • Multiple Transports: Support for both STDIO and SSE (HTTP) transports
  • Client Integration: Works with Claude Code, Gemini CLI, Cursor, and other MCP clients

Installation

  1. Clone the repository:
git clone https://github.com/stolostron/jira-mcp-server.git
cd jira-mcp-server
  1. Install the package:
pip install -e .

Or install with development dependencies:

pip install -e ".[dev]"

macOS: Use pip3 instead of pip:

pip3 install -e .

Configuration

  1. Copy the example environment file:
cp .env.example .env
  1. Edit .env with your Jira credentials:
JIRA_SERVER_URL=https://your-company.atlassian.net
JIRA_ACCESS_TOKEN=your-personal-access-token
JIRA_EMAIL=your-email@company.com
JIRA_VERIFY_SSL=true
JIRA_TIMEOUT=30
JIRA_MAX_RESULTS=100

# Optional: Configure teams (JSON format with usernames, NOT email addresses)
JIRA_TEAMS={"frontend": ["alice", "bob"], "backend": ["charlie", "david"], "devops": ["eve"]}

# Optional: Configure component aliases (JSON format mapping aliases to actual component names)
JIRA_COMPONENT_ALIASES={"ui": "User Interface", "be": "Backend Services", "infra": "Infrastructure"}

Note: Team member names must be Jira usernames, not email addresses.

Jira Cloud Setup

For Jira Cloud (Atlassian Cloud), you'll need to:

  1. Create a personal access token:

    • Go to https://id.atlassian.com/manage-profile/security/api-tokens
    • Click "Create API token"
    • Use the access token as the JIRA_ACCESS_TOKEN
  2. Set JIRA_EMAIL to the email address associated with your Atlassian account (required for Cloud authentication)

  3. Use your full Atlassian domain (e.g., https://yourcompany.atlassian.net)

Jira Server/Data Center Setup

For on-premise Jira instances:

  1. Use your Jira server URL
  2. Use your personal access token
  3. Ensure the user has appropriate permissions for the operations you need

Usage

Running the Server

STDIO Transport (Default)

Start the MCP server with STDIO transport (for use with MCP clients):

jira-mcp-server

Or run directly with Python:

python -m jira_mcp_server.main

SSE Transport (HTTP)

Start the MCP server with SSE (Server-Sent Events) transport for HTTP-based communication:

jira-mcp-server --transport sse

Or with custom host and port:

jira-mcp-server --transport sse --host 0.0.0.0 --port 9000

Or run directly with Python:

python -m jira_mcp_server.main --transport sse --host 127.0.0.1 --port 8000

When running with SSE transport, the server will expose:

  • SSE Endpoint: http://127.0.0.1:8000/sse (for real-time server-to-client communication)
  • Message Endpoint: http://127.0.0.1:8000/messages/ (for client-to-server communication)

Transport Types

  • STDIO: Best for integration with MCP clients like Claude Code, IDEs, or command-line tools
  • SSE: Best for web applications, REST API integration, or when you need HTTP-based communication

SSE Client Example

An example SSE client is provided to demonstrate how to connect to the server using HTTP transport:

# First, start the server with SSE transport
jira-mcp-server --transport sse

# Then run the example client (in another terminal)
python examples/sse_client.py

The example client demonstrates:

  • Connecting to the SSE endpoint
  • Listing available tools
  • Getting Jira projects
  • Searching for issues

Client Configuration

Claude Code

Claude Code is Anthropic's code editor application that supports MCP servers for enhanced AI-powered development assistance.

Configuration File Locations

Claude Code looks for MCP server configurations in the following locations (in order of precedence):

  • Project-specific: .mcp.json in your project directory
  • Project-specific: .claude/settings.json in your project directory
  • Global: ~/.mcp.json in your home directory
  • Global: ~/.claude/settings.json in your home directory

Recommended: Use a project-specific .mcp.json or .claude/settings.json file for better portability and team sharing.

Setup Steps

  1. Create a project-specific configuration file (recommended, same format in all options):
{
  "mcpServers": {
    "jira-mcp-server": {
      "command": "python",
      "args": ["-m", "jira_mcp_server.main"],
      "cwd": "/home/user/workspace_git/jira-mcp-server",
    }
  }
}

macOS: Use python3 (or the full path /usr/local/bin/python3) instead of python:

{
  "mcpServers": {
    "jira-mcp-server": {
      "command": "/usr/local/bin/python3",
      "args": ["-m", "jira_mcp_server.main"],
      "cwd": "/home/user/workspace_git/jira-mcp-server"
    }
  }
}

Option A: Create .mcp.json in your project root:

Option B: Create .claude/settings.json in your project root:

  1. Or create a global configuration:

Option A: For global access across all projects, create ~/.mcp.json:

Option B: Or create ~/.claude/settings.json:

  1. Restart Claude Code to apply the configuration.

  2. Verify the connection by asking Claude to list your Jira issues or projects.

Example Usage

Once connected, you can ask Claude:

  • "Show me all my assigned Jira issues"
  • "Create a new bug report for the login issue"
  • "What are the high priority issues in the PROJECT project?"
  • "Add a comment to issue PROJ-123 saying it's been fixed"
  • "Log 2 hours of work on issue PROJ-123 for debugging the login bug"
  • "Link issue PROJ-123 to PROJ-456 with a 'blocks' relationship"
  • "Show me all available link types for this Jira instance"
  • "Assign the frontend team to issue PROJ-123"
  • "Create a new issue and assign it to the backend team"
  • "Who is watching issue PROJ-123?"
  • "Add alice as a watcher to issue PROJ-456"
  • "Find all issues assigned to the frontend team"
  • "Show me open issues assigned to the backend team"

Gemini CLI

Gemini CLI is Google's command-line interface that supports MCP servers.

Configuration File Locations

  • Global: ~/.gemini/settings.json
  • Project-specific: <project-root>/.gemini/settings.json

Setup Steps

  1. Create or edit the configuration file:
{
  "mcpServers": {
    "jira-mcp-server": {
      "command": "python",
      "args": ["-m", "jira_mcp_server.main"],
      "cwd": "/home/user/workspace_git/jira-mcp-server",
      "timeout": 30000,
      "trust": false
    }
  }
}

macOS: Use python3 (or the full path /usr/local/bin/python3) instead of python for the "command" value.

  1. Restart Gemini CLI to apply the configuration.

  2. Test the connection by running a command that interacts with Jira.

Example Usage

# Ask about Jira issues
gemini "Show me my assigned Jira issues"

# Create a new issue
gemini "Create a new bug report titled 'Login Error' in project PROJ"

# Log time on an issue
gemini "Log 2 hours on issue PROJ-123 for implementing the new feature"

# Link two issues together
gemini "Link issue PROJ-123 to PROJ-456 with a blocks relationship"

Cursor

Cursor is a code editor that supports MCP servers for AI-powered development assistance.

Recommended model: GPT-5 or claude-4-sonnet-1m (MAX)

Configuration File Locations

  • Project-specific: <project-root>/.cursor/mcp.json
  • Global: ~/.cursor/mcp.json

Setup Steps

  1. Create or edit the configuration file:
{
  "mcpServers": {
    "jira-mcp-server": {
      "command": "python",
      "args": ["-m", "jira_mcp_server.main"],
      "cwd": "/home/user/workspace_git/jira-mcp-server",
    }
  }
}

macOS: Use python3 (or the full path /usr/local/bin/python3) instead of python for the "command" value.

  1. Restart Cursor to apply the configuration.

  2. Use the integration by asking Cursor to help with Jira-related tasks in your code.

Available Tools

The server provides the following MCP tools:

search_issues

Search for issues using JQL (Jira Query Language):

# Example JQL queries:
"project = MYPROJ AND status = Open"
"assignee = currentUser() AND priority = High"
"created >= -7d AND project in (PROJ1, PROJ2)"

search_issues_by_team

Search for issues assigned to any member of a team:

search_issues_by_team(
    team_name="frontend",
    project_key="PROJ",  # Optional
    status="In Progress"  # Optional
)

This automatically generates a JQL query like:

project = PROJ AND (assignee = "alice" OR assignee = "bob") AND status = "In Progress"

get_issue

Get detailed information about a specific issue:

get_issue(issue_key="PROJ-123")

create_issue

Create a new issue:

create_issue(
    project_key="PROJ",
    summary="Fix login bug",
    description="Users cannot log in with special characters",
    issue_type="Bug",
    priority="High"
)

update_issue

Update an existing issue:

update_issue(
    issue_key="PROJ-123",
    summary="Updated summary",
    assignee="john.doe"
)

transition_issue

Change the status of an issue:

transition_issue(
    issue_key="PROJ-123",
    transition="Done"
)

Note: Transitions beyond "New", "Backlog", and "In Progress" require fix_version to be set on the issue. This ensures all completed work is tied to a release version.

add_comment

Add a comment to an issue:

add_comment(
    issue_key="PROJ-123",
    comment="This has been resolved"
)

link_issue

Create a link between two issues:

link_issue(
    link_type="Blocks",
    inward_issue="PROJ-123",
    outward_issue="PROJ-456",
    comment="This issue blocks the other one"
)

get_link_types

Get all available issue link types:

get_link_types()

log_time

Log time spent on an issue:

log_time(
    issue_key="PROJ-123",
    time_spent="2h 30m",
    comment="Implemented new feature"
)

get_projects

List all accessible projects:

get_projects()

get_project_components

Get components for a specific project:

get_project_components(project_key="PROJ")

search_users

Search for Jira users by name, email, or username:

search_users(
    query="john",
    max_results=50
)

Returns matching users with their account_id, name, display_name, email_address, and active status. Useful for finding user IDs when assigning issues.

debug_issue_fields

Get all raw Jira fields for an issue (useful for debugging custom fields):

debug_issue_fields(issue_key="PROJ-123")

Team Management Tools

list_teams

List all configured teams and their members:

list_teams()

add_team

Add or update a team configuration:

add_team(
    team_name="frontend",
    members=["alice", "bob", "charlie"]
)

remove_team

Remove a team configuration:

remove_team(team_name="frontend")

assign_team_to_issue

Assign a team to an issue by adding all team members as watchers:

assign_team_to_issue(
    issue_key="PROJ-123",
    team_name="frontend"
)

Note: When creating issues, you can also use the team parameter to automatically add team members as watchers:

create_issue(
    project_key="PROJ",
    summary="Fix login bug",
    description="Users cannot log in",
    issue_type="Bug",
    priority="High",
    team="frontend"  # All frontend team members will be added as watchers
)

Watcher Management Tools

get_issue_watchers

Get all watchers for an issue:

get_issue_watchers(issue_key="PROJ-123")

add_watcher_to_issue

Add a single watcher to an issue:

add_watcher_to_issue(
    issue_key="PROJ-123",
    username="alice"
)

remove_watcher_from_issue

Remove a watcher from an issue:

remove_watcher_from_issue(
    issue_key="PROJ-123",
    username="alice"
)

Component Alias Management Tools

list_component_aliases

List all configured component aliases:

list_component_aliases()

add_component_alias

Add or update a component alias:

add_component_alias(
    alias="ui",
    component_name="User Interface"
)

remove_component_alias

Remove a component alias:

remove_component_alias(alias="ui")

Available Resources

The server also provides MCP resources for read-only access:

  • jira://issue/{issue_key} - Get formatted issue details
  • jira://projects - Get formatted list of all projects

Slash Commands

The project includes custom slash commands that can be installed for use in Claude Code.

/jira-create — Interactive Issue Creation

The /jira-create command provides a guided, interactive flow for creating Jira issues. It walks you through each step using prompts:

  1. Issue Type — Select from Story, Bug, Task, Spike, Feature, Epic, or Sub-task
  2. Specialist Agent — A specialist agent (e.g., story-specialist, bug-specialist) is launched to help craft the summary and description based on the issue type
  3. Core Fields — Priority, Work Type, Original Estimate, Story Points
  4. Categorization — Component, Labels, Target Version
  5. Parent / Linking — Link to a parent issue or related issues
  6. Confirmation — Review all fields before creation
  7. Post-Creation — Option to create child stories (for Epics) or related issues (for Features)

To install the command:

make install-commands

This symlinks the command to ~/.claude/commands/ so it's available globally in Claude Code. You can then invoke it by typing /jira-create in any Claude Code session.

/summary — Work Summary

The /summary command generates a formal summary of work performed in the current AI session. It gathers repository changes (git diff, recent commits) and conversation context (Jira activity, decisions made) to produce:

  1. Formal Work Summary — A structured markdown summary with changes, Jira activity, and notes
  2. Git Commit Message — A plain-text version suitable for direct use in CLI commands (no special characters that interfere with shell interpretation)
  3. Jira Integration — Option to post the summary as a comment on a Jira issue
  4. Git Reference Reminder — Reminds you to add commit SHA and PR URL to the Jira issue

Automatic Update Notifications

The server automatically checks for updates when it starts. It compares your local checkout against origin/main and, if new commits are available, emits a one-time warning on the first tool call of the session:

jira-mcp-server update available: origin/main is 3 commit(s) ahead. Run 'git pull' in /path/to/jira-mcp-server to update.

This check is non-blocking and fails silently if the repository is not available or the fetch times out.

Development

Makefile Targets

make help              # Show available targets
make test              # Run all tests in the tests/ directory
make lint              # Run ruff linter
make lint-fix          # Run ruff linter with auto-fix
make install-commands  # Symlink project commands to ~/.claude/commands/

Running Tests

make test

Setting up Development Environment

  1. Install development dependencies:
pip install -e ".[dev]"
  1. Run tests:
make test
  1. Lint:
make lint       # check
make lint-fix   # auto-fix
  1. Format code:
black jira_mcp_server/
isort jira_mcp_server/
  1. Type checking:
mypy jira_mcp_server/

CI

GitHub Actions runs tests (Python 3.10, 3.11, 3.12) and lint on every push to main and every pull request. See .github/workflows/ci.yml.

Project Structure

jira_mcp_server/
├── __init__.py          # Package initialization
├── config.py            # Configuration management
├── client.py            # Jira client wrapper
├── server.py            # MCP server implementation
└── main.py              # Entry point

Troubleshooting

Common Issues

1. Connection Failed

Symptoms: Client cannot connect to the MCP server

Solutions:

  • Verify the server is running: python -m jira_mcp_server.main
  • Check the configuration file paths and syntax
  • Ensure Python is in the system PATH
  • Verify the working directory (cwd) is correct

2. Authentication Errors

Symptoms: Server starts but cannot connect to Jira

Solutions:

  • Verify Jira credentials in the .env file
  • For Jira Cloud: ensure JIRA_EMAIL is set to your Atlassian account email
  • Check if the Jira server URL is correct
  • Ensure the personal access token is valid
  • Test credentials with a simple Jira API call

3. Permission Denied

Symptoms: Server connects to Jira but cannot perform operations

Solutions:

  • Check user permissions in Jira
  • Verify the user has access to the requested projects
  • Ensure the access token has necessary scopes

4. Timeout Issues

Symptoms: Requests timeout or hang

Solutions:

  • Increase the timeout value in configuration
  • Check network connectivity to Jira
  • Verify Jira server is responsive

Debug Mode

Enable debug logging to troubleshoot issues:

# Set debug environment variable
export PYTHONPATH=debug

# Run the server with debug output
python -m jira_mcp_server.main

Log Files

Check these locations for error logs:

  • Server logs: Console output when running the server
  • Client logs: Check client-specific log directories
  • System logs: /var/log/ on Linux/macOS

Getting Help

If you encounter issues:

  1. Check the Issues page
  2. Review Jira API documentation
  3. Verify your Jira instance configuration
  4. Test with a simple MCP client first

Advanced Configuration

Custom Environment Variables

You can override any configuration by setting environment variables:

export JIRA_SERVER_URL="https://custom-jira.company.com"
export JIRA_EMAIL="your-email@company.com"
export JIRA_TIMEOUT="60"
export JIRA_MAX_RESULTS="200"
export JIRA_TEAMS='{"frontend": ["alice", "bob"], "backend": ["charlie"]}'
export JIRA_COMPONENT_ALIASES='{"ui": "User Interface", "be": "Backend Services", "infra": "Infrastructure"}'

Team Configuration

Teams can be configured in two ways:

1. Environment Variable (Static)

Set the JIRA_TEAMS environment variable in your .env file:

JIRA_TEAMS={"frontend": ["alice", "bob"], "backend": ["charlie", "david"]}

2. Dynamic Configuration (Runtime)

Use the MCP tools to manage teams dynamically:

# Add a new team
add_team(team_name="devops", members=["eve", "frank"])

# Update an existing team
add_team(team_name="frontend", members=["alice", "bob", "grace"])

# Remove a team
remove_team(team_name="legacy-team")

# List all teams
list_teams()

Using Teams

Once teams are configured, you can:

  1. Assign teams when creating issues:
create_issue(
    project_key="PROJ",
    summary="New feature",
    description="Implement new login flow",
    team="frontend"  # All frontend members become watchers
)
  1. Assign teams to existing issues:
assign_team_to_issue(
    issue_key="PROJ-123",
    team_name="backend"
)
  1. Check who's watching:
get_issue_watchers(issue_key="PROJ-123")

Team Benefits

  • Visibility: All team members are automatically notified of issue updates
  • Collaboration: Ensures the whole team stays informed
  • Flexibility: Teams can be configured per environment or project
  • Scalability: Easily manage large teams without adding watchers one by one

Component Alias Configuration

Component aliases allow you to use short, memorable names instead of long component names when creating or updating Jira issues. This is especially useful when component names are lengthy or difficult to remember.

1. Environment Variable (Static)

Set the JIRA_COMPONENT_ALIASES environment variable in your .env file:

JIRA_COMPONENT_ALIASES={"ui": "User Interface", "be": "Backend Services", "infra": "Infrastructure", "db": "Database"}

2. Dynamic Configuration (Runtime)

Use the MCP tools to manage component aliases dynamically:

# Add a new component alias
add_component_alias(alias="ui", component_name="User Interface")

# Update an existing alias
add_component_alias(alias="ui", component_name="User Interface v2")

# Remove an alias
remove_component_alias(alias="legacy")

# List all component aliases
list_component_aliases()

Using Component Aliases

Once configured, you can use aliases anywhere you would use component names:

  1. Creating issues with component aliases:
create_issue(
    project_key="PROJ",
    summary="Fix UI bug",
    description="Button is not clickable",
    issue_type="Bug",
    priority="High",
    components=["ui", "be"]  # Will resolve to ["User Interface", "Backend Services"]
)
  1. Updating issues with component aliases:
update_issue(
    issue_key="PROJ-123",
    components=["ui", "db"]  # Mix of aliases
)
  1. Mixing aliases with actual component names:
create_issue(
    project_key="PROJ",
    summary="Database optimization",
    description="Optimize queries",
    issue_type="Task",
    priority="Medium",
    components=["db", "Performance Testing"]  # Alias + actual name
)

Component Alias Benefits

  • Convenience: Use short aliases instead of typing long component names
  • Consistency: Standardize component naming across your team
  • Flexibility: Mix aliases with actual component names as needed
  • Error Reduction: Reduce typos when specifying component names
  • Efficiency: Speed up issue creation and updates

Note: Component aliases are case-sensitive. If a component name isn't found in the alias mapping, it will be used as-is (assumed to be the actual component name).

Multiple Jira Instances

To connect to multiple Jira instances, create separate MCP server configurations:

{
  "mcpServers": {
    "jira-production": {
      "command": "python",
      "args": ["-m", "jira_mcp_server.main"],
      "cwd": "/home/user/workspace_git/jira-mcp-server",
      "env": {
        "JIRA_SERVER_URL": "https://prod.atlassian.net",
        "JIRA_ACCESS_TOKEN": "prod-token",
        "JIRA_EMAIL": "you@company.com"
      }
    },
    "jira-staging": {
      "command": "python",
      "args": ["-m", "jira_mcp_server.main"],
      "cwd": "/home/user/workspace_git/jira-mcp-server",
      "env": {
        "JIRA_SERVER_URL": "https://company.atlassian.net",
        "JIRA_ACCESS_TOKEN": "cloud-token",
        "JIRA_EMAIL": "you@company.com"
      }
    }
  }
}

macOS: Use python3 (or the full path /usr/local/bin/python3) instead of python for both "command" values above.

Security Considerations

  • Store credentials securely (use environment variables or secure credential stores)
  • Use personal access tokens instead of passwords
  • Regularly rotate access tokens
  • Limit token permissions to necessary scopes only
  • Consider using different tokens for different environments

License & Contributing

License

This project is licensed under the MIT License - see the LICENSE file for details.

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Add tests if applicable
  5. Submit a pull request

Support

For issues and questions:

  • Check the Issues page
  • Review Jira API documentation
  • Check MCP specification at https://modelcontextprotocol.io/

This guide provides comprehensive instructions for using the Jira MCP server with various clients. The server enables powerful AI-driven interactions with your Jira instance, making it easier to manage issues, projects, and workflows through natural language commands.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured