Overview
Artemis MCP is a server repository designed to facilitate the integration and management of the Artemis API and Claude Desktop.
To use Artemis MCP, ensure you have the prerequisites installed, then follow the installation instructions to set up either automatically using OpenTools or manually by configuring the necessary files.
- Integration with Claude Desktop for enhanced functionality. - Support for the Artemis API, allowing for seamless data management. - Flexible installation options (automated and manual).
- Managing API interactions for applications using the Artemis framework.
- Enhancing productivity with Claude Desktop through integrated tools.
- Facilitating development workflows for Python-based projects.
Add to your AI client
Use these steps to connect Artemis Mcp in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"artemis-mcp-artemis-xyz": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-artemis-mcp-artemis-xyz"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"artemis-mcp-artemis-xyz": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-artemis-mcp-artemis-xyz"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"artemis-mcp-artemis-xyz": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-artemis-mcp-artemis-xyz"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"artemis-mcp-artemis-xyz": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-artemis-mcp-artemis-xyz"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"artemis-mcp-artemis-xyz": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-artemis-mcp-artemis-xyz"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"artemis-mcp-artemis-xyz": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-artemis-mcp-artemis-xyz"
]
}
}
}FAQ
What are the prerequisites for using Artemis MCP?
You need Python 3.11+, uv, Claude Desktop, and an Artemis API Key.
Is there an automated installation option?
Yes, you can install it using OpenTools for easier setup.
Can I set it up manually?
Yes, manual setup is available, but it requires more configuration.