codegenomeproject
Your download token
Reveal and copy it now. It's shown only once, and we can't recover it later. Or download a setup guide with every snippet below already filled in with your token.
Your download token
••••••••••••••••••••••••••••••••••••••••Maven: ~/.m2/settings.xml
<settings>
<servers>
<server>
<id>codegenome</id>
<username>dev@example.com</username>
<password>cgp_7Fq2Yx9pLmN4dRt8Ke1WvZ0aBcD3sGhJ</password>
</server>
</servers>
</settings>
Maven: pom.xml
<repositories>
<repository>
<id>codegenome</id>
<url>https://artifacts.codegenomeproject.org/maven</url>
</repository>
</repositories>
Gradle (Kotlin): build.gradle.kts
repositories {
maven {
url = uri("https://artifacts.codegenomeproject.org/maven")
credentials {
username = "dev@example.com"
password = "cgp_7Fq2Yx9pLmN4dRt8Ke1WvZ0aBcD3sGhJ"
}
}
}
Gradle (Groovy): build.gradle
repositories {
maven {
url = 'https://artifacts.codegenomeproject.org/maven'
credentials {
username = 'dev@example.com'
password = 'cgp_7Fq2Yx9pLmN4dRt8Ke1WvZ0aBcD3sGhJ'
}
}
}
MCP: .mcp.json (Claude Code, Cursor, VS Code…)
{
"mcpServers": {
"codegenome": {
"type": "http",
"url": "https://api.codegenomeproject.org/mcp",
"headers": { "Authorization": "Bearer cgp_7Fq2Yx9pLmN4dRt8Ke1WvZ0aBcD3sGhJ" }
}
}
}
MCP: Claude Code CLI
claude mcp add --transport http codegenome https://api.codegenomeproject.org/mcp --header "Authorization: Bearer cgp_7Fq2Yx9pLmN4dRt8Ke1WvZ0aBcD3sGhJ"
Cursor, VS Code, Windsurf, Cline and Zed take the same URL with an
Authorization: Bearer header. For clients that only speak stdio, bridge with
npx mcp-remote.