Work Integrations MCP

Work Integrations MCP

An MCP server that enables interaction with Jira to fetch issues by key and perform JQL searches. It provides a foundation for integrating multiple work systems, with planned support for Slack and GitHub.

Category
Visit Server

README

Work Integrations MCP

This is a small MCP server that exposes tools for multiple work systems (Jira now, with Slack/GitHub and others planned).

Current tools

  • jira_get_issue - Fetch a Jira issue by key
  • jira_search - Search Jira using JQL
  • slack_get_message_by_url - Fetch a Slack message by URL
  • slack_get_channel_history - Fetch recent Slack messages
  • slack_find_channel - Resolve channel name to ID
  • slack_find_user - Resolve user by email or display name

Setup

  1. Install dependencies:

    • npm install
  2. Configure environment variables (examples):

    • JIRA_BASE=https://company.atlassian.net
    • JIRA_EMAIL=you@company.com
    • JIRA_TOKEN=your_api_token
    • JIRA_API_VERSION=3
    • SLACK_TOKEN=xoxb-your-slack-bot-token
  3. Register the MCP server in Cursor (~/.cursor/mcp.json):

    {
      "mcpServers": {
        "work-integrations-mcp": {
          "command": "npx",
          "args": [
            "tsx",
            "/ABS/PATH/jira-mcp/server.ts"
          ],
          "env": {
            "JIRA_BASE": "https://company.atlassian.net",
            "JIRA_EMAIL": "you@company.com",
            "JIRA_TOKEN": "your_api_token",
            "JIRA_API_VERSION": "3",
            "SLACK_TOKEN": "xoxb-your-slack-bot-token"
          }
        }
      }
    }
    
  4. Restart Cursor.

Usage examples

  • "Use jira_get_issue with key CVR-248"
  • "Search Jira with JQL: project = CVR ORDER BY updated DESC"
  • "Use slack_get_message_by_url with url https://..."
  • "Use slack_get_channel_history with channel general"
  • "Use slack_find_user with email user@company.com"

Slack setup notes

Create a Slack App and install it in your workspace. Minimum scopes for public channels:

  • channels:read
  • channels:history
  • users:read
  • users:read.email

For private channels, add:

  • groups:read
  • groups:history

Extending

Add new tools for Slack, GitHub, or other services by adding a new folder under services/ and registering the module in server.ts:

  1. Create services/<service>/client.ts for auth + API calls
  2. Create services/<service>/tools.ts exporting a ToolModule
  3. Import the module in server.ts and pass it to mergeToolModules
  4. Add any new env variables in the Cursor MCP config if needed

Keep the tool names stable so existing prompts continue to work.

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