Atomicwork MCP Server

Atomicwork MCP Server

Enables AI assistants like Claude to interact with Atomicwork tickets, requests, and workflows through natural language, providing tools for listing, searching, and managing tickets.

Category
访问服务器

README

Atomicwork MCP Server

MCP TypeScript License

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.

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 build

Configuration

Step 1: Get Your Atomicwork API Key

  1. Log into your Atomicwork instance
  2. Navigate to Settings → API (usually at https://your-company.atomicwork.com/settings/api)
  3. Generate a new API key
  4. Copy the key - you'll need it for configuration

Step 2: Find Your User ID and Workspace ID

Finding your User ID:

  1. Open your browser's Developer Tools (F12)
  2. Go to the Network tab
  3. Navigate to any page in Atomicwork
  4. Look for API requests to /api/v1/users/me or similar
  5. Your user ID will be in the response (usually a number like 12345)

Finding your Workspace ID:

  1. In the same Network tab
  2. Look for API requests to /api/v1/workspaces/
  3. Your workspace ID will be in the URL (usually a number like 123 or 456)

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.js with the actual path to the built server
  • your_api_key_here with your Atomicwork API key
  • your-company with your Atomicwork instance subdomain
  • your_user_id with your user ID
  • your_workspace_id with 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 tickets

Get ticket details:

Get details for Atomicwork ticket ITREQ-1234

Search for tickets:

Search for tickets about "password reset"

List all workspace requests:

Show me all open requests in the workspace

Filter requests by user:

Show me all tickets from user@company.com
List requests created by john@company.com

View ticket comments:

Show me comments on ticket ITREQ-1234
Get all notes for this ticket

Available 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 tickets

get_ticket_details

Gets detailed information about a specific ticket.

Parameters:

  • ticket_id (required): The ID of the ticket

Example:

Show me ticket ITREQ-1234

search_tickets

Searches for tickets by keyword.

Parameters:

  • query (required): Search query string
  • assigned_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 status
  • limit (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.com

get_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 567890

Troubleshooting

MCP Server Not Appearing

  1. Check the configuration file path - Ensure you edited the correct claude_desktop_config.json
  2. Verify the dist path - Make sure the path to dist/index.js is absolute and correct
  3. Restart Claude Desktop - Changes require a full restart
  4. 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/me in 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 build

Development

Running Locally

# Install dependencies
bun install

# Build the project
bun run build

# Test the MCP server
node dist/index.js

Project 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 file

Security

  • 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:

Acknowledgments

Inspired by the ClickUp MCP Server by taazkareem.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选