Atomicwork MCP Server
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., "@Atomicwork MCP ServerShow me my open tickets"
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.
Atomicwork MCP Server
A Model Context Protocol (MCP) server that integrates Atomicwork with Claude Desktop and other MCP clients. This allows AI assistants like Claude to interact with your Atomicwork tickets, requests, and workflows directly.
What is Atomicwork?
Atomicwork is an enterprise service management platform that helps IT teams manage tickets, requests, changes, and incidents. This MCP server brings that functionality into your AI workflow.
Related MCP server: Xalantis MCP Server
Features
📋 List Tickets - View all tickets assigned to you
🔍 Search Tickets - Find tickets by keyword or criteria
📊 Get Ticket Details - Retrieve complete information about any ticket
🌐 Workspace Access - List all requests in your workspace
👤 Filter by User - List requests by requester email
💬 View Comments - Get all comments and notes on tickets
Requirements
Node.js 18.0 or higher
Atomicwork Account with API access
Claude Desktop or another MCP-compatible client
Installation
Option 1: Clone and Build from Source
# Clone the repository
git clone https://github.com/keller-a16z/public-atomicwork-mcp.git
cd public-atomicwork-mcp
# Install dependencies
npm install # or: bun install
# Build the project
npm run build # or: bun run buildConfiguration
Step 1: Get Your Atomicwork API Key
Log into your Atomicwork instance
Navigate to Settings → API (usually at
https://your-company.atomicwork.com/settings/api)Generate a new API key
Copy the key - you'll need it for configuration
Step 2: Find Your User ID and Workspace ID
Finding your User ID:
Open your browser's Developer Tools (F12)
Go to the Network tab
Navigate to any page in Atomicwork
Look for API requests to
/api/v1/users/meor similarYour user ID will be in the response (usually a number like
12345)
Finding your Workspace ID:
In the same Network tab
Look for API requests to
/api/v1/workspaces/Your workspace ID will be in the URL (usually a number like
123or456)
Step 3: Configure Claude Desktop
Add the MCP server to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"atomicwork": {
"command": "node",
"args": [
"/ABSOLUTE/PATH/TO/public-atomicwork-mcp/dist/index.js"
],
"env": {
"ATOMICWORK_API_KEY": "your_api_key_here",
"ATOMICWORK_BASE_URL": "https://your-company.atomicwork.com/api/v1",
"ATOMICWORK_USER_ID": "your_user_id",
"ATOMICWORK_WORKSPACE_ID": "your_workspace_id"
}
}
}
}Replace:
/ABSOLUTE/PATH/TO/public-atomicwork-mcp/dist/index.jswith the actual path to the built serveryour_api_key_herewith your Atomicwork API keyyour-companywith your Atomicwork instance subdomainyour_user_idwith your user IDyour_workspace_idwith your workspace ID
Step 4: Restart Claude Desktop
Close and reopen Claude Desktop to load the new MCP server.
Usage
Once configured, you can interact with Atomicwork through natural language in Claude Desktop:
Example Queries
List your tickets:
Show me my current Atomicwork ticketsGet ticket details:
Get details for Atomicwork ticket ITREQ-1234Search for tickets:
Search for tickets about "password reset"List all workspace requests:
Show me all open requests in the workspaceFilter requests by user:
Show me all tickets from user@company.com
List requests created by john@company.comView ticket comments:
Show me comments on ticket ITREQ-1234
Get all notes for this ticketAvailable Tools
list_my_tickets
Lists all tickets assigned to you.
Parameters:
status(optional): Filter by status (open,in_progress,resolved,closed)limit(optional): Maximum number of tickets to return (default: 50)
Example:
List my in-progress ticketsget_ticket_details
Gets detailed information about a specific ticket.
Parameters:
ticket_id(required): The ID of the ticket
Example:
Show me ticket ITREQ-1234search_tickets
Searches for tickets by keyword.
Parameters:
query(required): Search query stringassigned_to_me(optional): Only show tickets assigned to you (default: true)
Example:
Find tickets mentioning "GitHub"list_all_requests
Lists all requests in the workspace (not just yours). Can filter by requester email.
Parameters:
status(optional): Filter by statuslimit(optional): Maximum number of requests (default: 50)requester_email(optional): Filter by requester email address (e.g.,user@company.com)
Examples:
Show all open requests in the workspace
Show me all tickets from john@company.com
List requests from jane@company.comget_ticket_comments
Gets all comments and notes on a specific ticket.
Parameters:
ticket_id(required): The ID or display_id of the ticket (e.g.,ITREQ-1234)
Example:
Show me comments on ticket ITREQ-1234
Get all notes for ticket 567890Troubleshooting
MCP Server Not Appearing
Check the configuration file path - Ensure you edited the correct
claude_desktop_config.jsonVerify the dist path - Make sure the path to
dist/index.jsis absolute and correctRestart Claude Desktop - Changes require a full restart
Check logs - Look for errors in Claude Desktop's logs
API Connection Errors
"Failed to connect to Atomicwork"
Verify your API key is correct
Check that your base URL matches your Atomicwork instance
Ensure you have network access to your Atomicwork instance
Try accessing
https://your-company.atomicwork.com/api/v1/users/mein your browser with the API key
"Access Token X-Api-Key is missing/invalid"
Double-check your API key in the configuration
Ensure the API key hasn't expired
Try regenerating a new API key in Atomicwork
No Tickets Returned
"Error: ATOMICWORK_USER_ID not set"
Make sure you've added your user ID to the configuration
Verify the user ID is correct (it should be a number)
"Error: ATOMICWORK_WORKSPACE_ID not set"
Add your workspace ID to the configuration
Verify the workspace ID is correct (it should be a number)
Build Errors
If you're building from source and encounter errors:
# Clean and rebuild
rm -rf node_modules dist
npm install # or: bun install
npm run build # or: bun run buildDevelopment
Running Locally
# Install dependencies
bun install
# Build the project
bun run build
# Test the MCP server
node dist/index.jsProject Structure
public-atomicwork-mcp/
├── src/
│ └── index.ts # Main MCP server implementation
├── dist/ # Compiled JavaScript output
├── package.json # Project dependencies and scripts
├── tsconfig.json # TypeScript configuration
├── .env.example # Environment variable template
├── .gitignore # Git ignore rules
└── README.md # This fileSecurity
Never commit your API keys - Use environment variables
Keep your API key secure - Don't share it publicly
Regenerate compromised keys - If your key is exposed, regenerate it immediately in Atomicwork
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
License
MIT License - see LICENSE file for details
Links
Support
For issues and questions:
Bug reports: GitHub Issues
Discussions: GitHub Discussions
Acknowledgments
Inspired by the ClickUp MCP Server by taazkareem.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/keller-a16z/public-atomicwork-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server