- Sonatype Dependency Management Mcp Server
Sonatype Dependency Management Mcp Server
Setup
The Sonatype MCP Server runs as a remote MCP server. Choose the setup instructions for your IDE or AI assistant:
Gemini Code Assist { "mcpServers": { "discoveredServer": { "url": "https://mcp.guide.sonatype.com/mcp" } } }
Claude Code Add the server using the Claude CLI:
claude mcp add --transport http sonatype-mcp https://mcp.guide.sonatype.com/mcp
VS Code Copilot
Add the following configuration to your global VS Code mcp.json or create a .vscode/mcp.json file in your workspace:
{ "servers": { "sonatype-mcp": { "url": "https://mcp.guide.sonatype.com/mcp", "type": "http" } } }
Windsurf
Create or edit ~/.codeium/windsurf/mcp_config.json:
{ "mcpServers": { "sonatype-mcp": { "command": "npx", "args": [ "mcp-remote", "https://mcp.guide.sonatype.com/mcp" ] } } }
IntelliJ with Junie
Global Scope: Go to IDE settings → Tools → Junie → MCP Settings. Click "+" and add:
Project Scope: Create .junie/mcp/.mcp.json in your project root:
{ "mcpServers": { "sonatype-mcp": { "command": "npx", "args": [ "mcp-remote", "https://mcp.guide.sonatype.com/mcp" ] } } }
Kiro Create or edit ~/.kiro/settings/mcp.json:
{ "mcpServers": { "sonatype-mcp": { "command": "npx", "args": [ "mcp-remote", "https://mcp.guide.sonatype.com/mcp" ] } } }
Cursor Cursor supports remote servers directly. Add to your ~/.cursor/mcp.json:
{ "mcpServers": { "sonatype-mcp": { "type": "http", "url": "https://mcp.guide.sonatype.com/mcp" } } }
Server Config
{
"servers": {
"sonatype-mcp": {
"url": "https://mcp.guide.sonatype.com/mcp",
"type": "http"
}
}
}