FinishKit MCP Server
Supported as a package manager for generating tailored production readiness analysis packs.
Allows triggering production readiness scans on repositories, analyzing security, deployment stability, and managing project connections.
Supported as an authentication provider for signing into and activating the FinishKit service.
Supported language for tailoring production readiness intelligence packs and analysis prompts.
Supported as a package manager for generating tailored production readiness analysis packs.
Supported as a package manager for generating tailored production readiness analysis packs.
Supported web framework for which the server can generate tailored production readiness analysis packs and rules.
Supported as a detectable integration for tailored production readiness analysis and intelligence.
Supported as a detectable integration for tailored production readiness analysis and intelligence.
Supported language for tailoring production readiness intelligence packs and analysis prompts.
Supported web framework for which the server can generate tailored production readiness analysis packs and rules.
Supported as a package manager for generating tailored production readiness analysis packs.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@FinishKit MCP Serverscan my-org/web-app for security vulnerabilities and blockers"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@finishkit/mcp
MCP server for FinishKit. Production readiness scanner for AI-built apps. Enables AI agents in Claude, Cursor, Windsurf, and VS Code to check if your code is ready to ship.
What AI Agents Can Do
Tool | Description |
| Check if your app is ready to ship. Triggers a production readiness scan and returns a prioritized finish plan. |
| Check progress of a production readiness scan. Returns current phase and progress percentage. |
| Get the production readiness report with prioritized findings blocking launch. |
| Get auto-generated code patches that fix production readiness issues. |
| List all repositories connected to FinishKit for production readiness scanning. |
| Get instructions to connect a new GitHub repository to FinishKit. |
| Request a production readiness analysis pack tailored to your technology stack. |
| Sync production readiness findings from a local analysis back to the FinishKit dashboard. |
| Set up FinishKit or check connection status. Creates a browser-based setup link if not connected. |
Quick Start
No API key required to get started. The server starts in setup mode and guides you through connecting your account.
Option A: Browser login (recommended)
npx @finishkit/mcp loginOpens your browser. Sign in with GitHub or Google. Your editor picks up the key automatically. No copy-paste, no config editing, no restart.
Option B: Setup command
npx @finishkit/mcp setupAuto-detects your editor and configures FinishKit. Or target a specific editor:
npx @finishkit/mcp setup --claude-code
npx @finishkit/mcp setup --cursor
npx @finishkit/mcp setup --windsurf
npx @finishkit/mcp setup --codex
npx @finishkit/mcp setup --vscodeThen ask your AI to scan your project. It will show a setup link if you haven't connected yet.
Option C: Manual configuration
Add the following to your editor's MCP config file:
Claude Desktop (~/.claude/claude_desktop_config.json), Cursor (~/.cursor/mcp.json), Windsurf (~/.codeium/windsurf/mcp_config.json), VS Code Copilot (.vscode/mcp.json):
{
"mcpServers": {
"finishkit": {
"command": "npx",
"args": ["-y", "@finishkit/mcp"],
"env": {
"FINISHKIT_API_KEY": "fk_live_your_key_here"
}
}
}
}Claude Code:
claude mcp add finishkit -- npx -y @finishkit/mcpGet an API key at finishkit.app/activate.
Works Without API Key
The server always starts, even without an API key configured. This means FinishKit tools always appear in your IDE.
When called without a key, the finishkit_setup tool creates a browser-based activation link. Click the link, sign in, and your editor picks up the key on the next tool call. No restart needed.
Two tools always work without a key:
finishkit_setup: Creates a setup link and checks connection status.create_project: Returns instructions for connecting a repository through the FinishKit dashboard.
Tools Reference
scan_repo (Primary Tool)
Check if your app is ready to ship. Triggers a production readiness scan on a GitHub repository, analyzing security, deployment, stability, tests, and UI completeness. Returns a prioritized finish plan with all findings. Typically takes 2-8 minutes.
Parameter | Type | Required | Description |
| string | Yes | GitHub org or username (e.g., |
| string | Yes | Repository name without owner (e.g., |
| enum | No |
|
| string | No | Specific commit to scan; defaults to latest |
Returns: Finding counts by severity and category, human-readable summary, dashboard URL.
get_scan_status
Check progress of a production readiness scan. Returns current phase and progress percentage.
Parameter | Type | Required | Description |
| string | Yes | Run ID from |
get_findings
Get the production readiness report with prioritized findings blocking launch. Filter by category (blockers, security, deploy, stability, tests, ui) or minimum severity (critical, high, medium, low).
Parameter | Type | Required | Description |
| string | Yes | Run ID of a completed scan |
| enum | No |
|
| enum | No | Minimum severity: |
| number | No | Max findings to return (1-100, default 50) |
get_patches
Get auto-generated code patches that fix production readiness issues. Each patch includes a unified diff you can apply directly.
Parameter | Type | Required | Description |
| string | Yes | Run ID of a completed scan |
list_projects
List all repositories connected to FinishKit for production readiness scanning. No inputs required.
create_project
Get instructions to connect a new GitHub repository to FinishKit for production readiness scanning. Works without an API key.
Parameter | Type | Required | Description |
| string | Yes | GitHub org or username |
| string | Yes | Repository name |
request_intelligence_pack
Request a production readiness analysis pack tailored to your technology stack. Returns framework-specific rules, security advisories, and analysis prompts for local scanning.
Parameter | Type | Required | Description |
| string | Yes | Web framework (e.g., |
| enum | Yes |
|
| enum | Yes |
|
| string | No | Framework version (e.g., |
| array | No | Detected integrations (e.g., |
| object | No | Package versions for CVE lookup |
| enum | No |
|
sync_findings
Sync production readiness findings from a local analysis back to the FinishKit dashboard. Creates a run record and inserts findings with deduplication.
Parameter | Type | Required | Description |
| string | Yes | Project display name |
| enum | Yes |
|
| string | Yes | Intelligence pack ID used |
| string | Yes | Intelligence pack version used |
| string | Yes | ISO timestamp when analysis started |
| string | Yes | ISO timestamp when analysis finished |
| object | Yes | Detected stack metadata |
| array | Yes | Array of findings from the analysis |
| string | Yes | Human-readable summary |
finishkit_setup
Set up FinishKit or check connection status. If not connected, creates a browser-based activation link. If connected, shows available tools. Always works, even without an API key. No inputs required.
Resources Reference
URI | Description |
| All projects as a JSON array |
| Single project details by ID |
| All findings for a scan run |
| Full event log for a scan run |
For AI Agents
If you are an AI agent with access to FinishKit MCP tools:
Primary workflow: Scan a repository
Call
scan_repowith the repository owner and nameThe tool handles the full lifecycle (trigger, poll, wait for completion)
Returns finding counts by severity and category
Call
get_findingsfor detailed findings listCall
get_patchesfor generated code fixes
Example: User asks "scan myorg/myapp for security issues"
scan_repo({ repo_owner: "myorg", repo_name: "myapp", run_type: "baseline" })Then:
get_findings({ run_id: "<from scan_repo response>", category: "security" })Handling common situations
"FinishKit is not connected": Use
finishkit_setupto get a browser activation link"Project not found": The repository must be connected at https://finishkit.app/dashboard first
"Authentication failed": The API key is invalid. Run
npx @finishkit/mcp loginto re-authenticate"Plan limit reached": User needs to upgrade at https://finishkit.app/dashboard/settings
Key facts
scan_repotypically takes 2-8 minutes. It blocks until complete, no need to poll separately.Findings have severity: critical, high, medium, low
Findings have category: blockers, security, deploy, stability, tests, ui
Critical and high findings should be fixed before production deployment
Authentication
The simplest way to authenticate is npx @finishkit/mcp login, which opens your browser and stores the key locally at ~/.finishkit/credentials.
The MCP resolves API keys in this order:
FINISHKIT_API_KEYenvironment variable (highest priority)~/.finishkit/credentialsfile (written byloginorsetup --api-key)No key (setup mode with browser activation link)
To get an API key manually:
Visit finishkit.app/activate
Sign in with GitHub or Google
Copy the key (starts with
fk_live_)
API keys authenticate via Authorization: Bearer <key> on every request. Keep your key secret and never commit it to source control.
Requirements
Node.js 18+
A FinishKit account (finishkit.app) for scanning (optional for setup)
At least one repository connected to FinishKit via the GitHub App (for scanning)
Registry Listings
License
MIT - Copyright (c) 2026 FinishKit
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/FinishKit/mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server