|
2 | 2 | "manifest_version": "0.3", |
3 | 3 | "name": "codeant", |
4 | 4 | "display_name": "CodeAnt AI", |
5 | | - "version": "0.5.0", |
| 5 | + "version": "0.5.1", |
6 | 6 | "description": "Drive CodeAnt AI security scans and code review from Claude — org-wide secret triage, cross-repo SAST/SCA findings, on-demand scans, and local PR review.", |
7 | | - "long_description": "CodeAnt AI inside Claude. Ask things like \"how many critical SAST findings do I have across my org?\", \"show every exposed secret in payments-service\", or \"review my staged changes\" — Claude calls the CodeAnt API directly via this MCP server.\n\nIncludes 11 read-only tools (orgs, repos, scan history, scan metadata, findings, dismissed alerts, PRs, comments, comment search, local review) and 2 opt-in write tools (trigger a scan, resolve a PR conversation) gated behind a setting.\n\nRequires a CodeAnt account. Sign up at https://codeant.ai and grab an API key from your settings page.", |
| 7 | + "long_description": "CodeAnt AI inside Claude. Ask things like \"how many critical SAST findings do I have across my org?\", \"show every exposed secret in payments-service\", or \"review my staged changes\" — Claude calls the CodeAnt API directly via this MCP server.\n\nIncludes 11 read-only tools (orgs, repos, scan history, scan metadata, findings, dismissed alerts, PRs, comments, comment search, local review) and 2 opt-in write tools (trigger a scan, resolve a PR conversation) gated behind a setting.\n\nRequires a CodeAnt account. Sign up at https://codeant.ai. To authenticate, call the `codeant_login` tool — it opens the CodeAnt sign-in page in your browser and saves the token automatically.\n\nCollects anonymous usage telemetry via PostHog by default; set CODEANT_TELEMETRY_DISABLED=1 to opt out.", |
8 | 8 | "author": { |
9 | 9 | "name": "CodeAnt AI", |
10 | 10 | "email": "support@codeant.ai", |
|
28 | 28 | "pull-requests" |
29 | 29 | ], |
30 | 30 | "privacy_policies": [ |
31 | | - "https://codeant.ai/privacy" |
| 31 | + "https://www.codeant.ai/privacy-policy" |
32 | 32 | ], |
33 | 33 | "icon": "icon.png", |
34 | 34 | "server": { |
|
40 | 40 | "env": { |
41 | 41 | "CODEANT_API_TOKEN": "${user_config.api_token}", |
42 | 42 | "CODEANT_API_URL": "${user_config.base_url}", |
43 | | - "CODEANT_READ_ONLY": "${user_config.read_only}" |
| 43 | + "CODEANT_READ_ONLY": "${user_config.read_only}", |
| 44 | + "GITHUB_TOKEN": "${user_config.github_token}", |
| 45 | + "GITLAB_TOKEN": "${user_config.gitlab_token}", |
| 46 | + "BITBUCKET_TOKEN": "${user_config.bitbucket_token}", |
| 47 | + "AZURE_DEVOPS_TOKEN": "${user_config.azure_devops_token}", |
| 48 | + "GITHUB_API_URL": "${user_config.github_api_url}", |
| 49 | + "GITLAB_URL": "${user_config.gitlab_url}", |
| 50 | + "BITBUCKET_URL": "${user_config.bitbucket_url}", |
| 51 | + "AZURE_DEVOPS_ORG_URL": "${user_config.azure_devops_org_url}" |
44 | 52 | } |
45 | 53 | } |
46 | 54 | }, |
|
63 | 71 | { "name": "codeant_comments_search", "description": "Search across CodeAnt review comments by free-text query." }, |
64 | 72 | { "name": "codeant_review_local", "description": "Run a CodeAnt AI review on local working-copy changes." }, |
65 | 73 | { "name": "codeant_login", "description": "Open app.codeant.ai in the browser and poll until the user completes sign-in; saves the resulting API token." }, |
| 74 | + { "name": "codeant_logout", "description": "Clear the saved API token and sign out of CodeAnt AI." }, |
66 | 75 | { "name": "codeant_scans_start", "description": "Trigger a new scan run (write — gated behind read_only=false)." }, |
67 | 76 | { "name": "codeant_pr_resolve", "description": "Resolve a PR conversation thread (write — gated behind read_only=false)." } |
68 | 77 | ], |
69 | 78 | "user_config": { |
70 | 79 | "api_token": { |
71 | 80 | "type": "string", |
72 | 81 | "title": "CodeAnt API token", |
73 | | - "description": "Optional. Leave blank and run the `codeant_login` tool to sign in through your browser instead. Otherwise paste a token from your CodeAnt account settings at app.codeant.ai.", |
| 82 | + "description": "Optional. Leave blank and call the `codeant_login` tool to sign in through your browser.", |
74 | 83 | "required": false, |
75 | 84 | "sensitive": true, |
76 | 85 | "default": "" |
|
88 | 97 | "description": "When enabled, write tools (trigger scan, resolve PR thread) are hidden. Recommended.", |
89 | 98 | "required": false, |
90 | 99 | "default": true |
| 100 | + }, |
| 101 | + "github_token": { |
| 102 | + "type": "string", |
| 103 | + "title": "GitHub token", |
| 104 | + "description": "Personal access token for GitHub. Also accepts the GH_TOKEN environment variable. Leave blank to fall back to the gh CLI.", |
| 105 | + "required": false, |
| 106 | + "sensitive": true, |
| 107 | + "default": "" |
| 108 | + }, |
| 109 | + "gitlab_token": { |
| 110 | + "type": "string", |
| 111 | + "title": "GitLab token", |
| 112 | + "description": "Personal access token for GitLab. Leave blank to fall back to the glab CLI.", |
| 113 | + "required": false, |
| 114 | + "sensitive": true, |
| 115 | + "default": "" |
| 116 | + }, |
| 117 | + "bitbucket_token": { |
| 118 | + "type": "string", |
| 119 | + "title": "Bitbucket token", |
| 120 | + "description": "App password or access token for Bitbucket.", |
| 121 | + "required": false, |
| 122 | + "sensitive": true, |
| 123 | + "default": "" |
| 124 | + }, |
| 125 | + "azure_devops_token": { |
| 126 | + "type": "string", |
| 127 | + "title": "Azure DevOps token", |
| 128 | + "description": "Personal access token for Azure DevOps. Also accepts AZURE_DEVOPS_PAT.", |
| 129 | + "required": false, |
| 130 | + "sensitive": true, |
| 131 | + "default": "" |
| 132 | + }, |
| 133 | + "github_api_url": { |
| 134 | + "type": "string", |
| 135 | + "title": "GitHub API URL", |
| 136 | + "description": "Override for GitHub Enterprise Server (e.g. https://github.example.com/api/v3). Leave blank for GitHub.com.", |
| 137 | + "required": false, |
| 138 | + "default": "" |
| 139 | + }, |
| 140 | + "gitlab_url": { |
| 141 | + "type": "string", |
| 142 | + "title": "GitLab URL", |
| 143 | + "description": "Override for a self-hosted GitLab instance (e.g. https://gitlab.example.com). Leave blank for GitLab.com.", |
| 144 | + "required": false, |
| 145 | + "default": "" |
| 146 | + }, |
| 147 | + "bitbucket_url": { |
| 148 | + "type": "string", |
| 149 | + "title": "Bitbucket URL", |
| 150 | + "description": "Override for a self-hosted Bitbucket Server instance. Leave blank for Bitbucket Cloud.", |
| 151 | + "required": false, |
| 152 | + "default": "" |
| 153 | + }, |
| 154 | + "azure_devops_org_url": { |
| 155 | + "type": "string", |
| 156 | + "title": "Azure DevOps organization URL", |
| 157 | + "description": "Full URL to your Azure DevOps organization (e.g. https://dev.azure.com/myorg).", |
| 158 | + "required": false, |
| 159 | + "default": "" |
91 | 160 | } |
92 | 161 | } |
93 | 162 | } |
0 commit comments