Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Work Integrations MCPFind the current status of Jira issue CVR-248"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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 keyjira_search- Search Jira using JQL
Setup
Install dependencies:
npm install
Configure environment variables (examples):
JIRA_BASE=https://company.atlassian.netJIRA_EMAIL=you@company.comJIRA_TOKEN=your_api_tokenJIRA_API_VERSION=3
Register the MCP server in Cursor (
~/.cursor/mcp.json):{ "mcpServers": { "work-integrations-mcp": { "command": "node", "args": ["/ABS/PATH/jira-mcp/server.js"], "env": { "JIRA_BASE": "https://company.atlassian.net", "JIRA_EMAIL": "you@company.com", "JIRA_TOKEN": "your_api_token", "JIRA_API_VERSION": "3" } } } }Restart Cursor.
Usage examples
"Use
jira_get_issuewith keyCVR-248""Search Jira with JQL:
project = CVR ORDER BY updated DESC"
Extending
Add new tools for Slack, GitHub, or other services in server.js by:
Defining a new tool in the
ListToolsRequestSchemahandlerHandling the tool in the
CallToolRequestSchemahandlerAdding new env variables in the Cursor MCP config if needed
Keep the tool names stable so existing prompts continue to work.