
Security News
Open VSX Unblocks Extension IDs Used in Malware Campaign
Open VSX has removed three extension IDs from its malicious-extension list as the legitimate publishers they impersonated move to claim the names for themselves.
@finishkit/mcp
Advanced tools
MCP server for FinishKit. Production readiness scanner for AI-built apps. Enables AI agents in Claude, Cursor, Windsurf, and VS Code to check if code is ready to ship.
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.
| Tool | Description |
|---|---|
scan_repo | Check if your app is ready to ship. Triggers a production readiness scan and returns a prioritized finish plan. |
get_scan_status | Check progress of a production readiness scan. Returns current phase and progress percentage. |
get_findings | Get the production readiness report with prioritized findings blocking launch. |
get_patches | Get auto-generated code patches that fix production readiness issues. |
list_projects | List all repositories connected to FinishKit for production readiness scanning. |
create_project | Get instructions to connect a new GitHub repository to FinishKit. |
request_intelligence_pack | Request a production readiness analysis pack tailored to your technology stack. |
sync_findings | Sync production readiness findings from a local analysis back to the FinishKit dashboard. |
finishkit_setup | Get setup instructions, API key status, and configuration examples for every supported IDE. |
No API key required to get started. The server starts in setup mode and guides you through configuration.
Claude Desktop (~/.claude/claude_desktop_config.json):
{
"mcpServers": {
"finishkit": {
"command": "npx",
"args": ["-y", "@finishkit/mcp"]
}
}
}
Cursor (.cursor/mcp.json or ~/.cursor/mcp.json):
{
"mcpServers": {
"finishkit": {
"command": "npx",
"args": ["-y", "@finishkit/mcp"]
}
}
}
Windsurf (~/.codeium/windsurf/mcp_config.json):
{
"mcpServers": {
"finishkit": {
"command": "npx",
"args": ["-y", "@finishkit/mcp"]
}
}
}
VS Code Copilot (.vscode/mcp.json):
{
"mcpServers": {
"finishkit": {
"command": "npx",
"args": ["-y", "@finishkit/mcp"]
}
}
}
Claude Code:
claude mcp add finishkit -- npx -y @finishkit/mcp
Ask "is my app ready to ship?" or use the finishkit_setup tool to see configuration details and all available tools.
Follow the setup guidance to get a free API key at finishkit.app. Then add it to your config:
{
"mcpServers": {
"finishkit": {
"command": "npx",
"args": ["-y", "@finishkit/mcp"],
"env": {
"FINISHKIT_API_KEY": "fk_live_your_key_here"
}
}
}
}
Restart your AI client after adding the 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, tools that require authentication return a helpful response explaining what FinishKit does and how to get set up. Two tools work without a key:
finishkit_setup: Shows detailed setup instructions, API key status, and configuration examples for every supported IDE.create_project: Returns instructions for connecting a repository through the FinishKit dashboard.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 |
|---|---|---|---|
repo_owner | string | Yes | GitHub org or username (e.g., myorg) |
repo_name | string | Yes | Repository name without owner (e.g., my-app) |
run_type | enum | No | baseline (default), pr, or manual_patch |
commit_sha | string | No | Specific commit to scan; defaults to latest |
Returns: Finding counts by severity and category, human-readable summary, dashboard URL.
get_scan_statusCheck progress of a production readiness scan. Returns current phase and progress percentage.
| Parameter | Type | Required | Description |
|---|---|---|---|
run_id | string | Yes | Run ID from scan_repo or the dashboard |
get_findingsGet 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 |
|---|---|---|---|
run_id | string | Yes | Run ID of a completed scan |
category | enum | No | blockers, security, deploy, stability, tests, ui |
severity | enum | No | Minimum severity: critical, high, medium, low |
limit | number | No | Max findings to return (1-100, default 50) |
get_patchesGet auto-generated code patches that fix production readiness issues. Each patch includes a unified diff you can apply directly.
| Parameter | Type | Required | Description |
|---|---|---|---|
run_id | string | Yes | Run ID of a completed scan |
list_projectsList all repositories connected to FinishKit for production readiness scanning. No inputs required.
create_projectGet instructions to connect a new GitHub repository to FinishKit for production readiness scanning. Works without an API key.
| Parameter | Type | Required | Description |
|---|---|---|---|
repo_owner | string | Yes | GitHub org or username |
repo_name | string | Yes | Repository name |
request_intelligence_packRequest 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 |
|---|---|---|---|
framework | string | Yes | Web framework (e.g., nextjs, remix, vite) |
language | enum | Yes | typescript or javascript |
package_manager | enum | Yes | npm, pnpm, yarn, or bun |
framework_version | string | No | Framework version (e.g., 16.0.0) |
integrations | array | No | Detected integrations (e.g., ["supabase", "stripe"]) |
dependencies | object | No | Package versions for CVE lookup |
focus | enum | No | full (default), security, api, deploy, stability |
sync_findingsSync 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 |
|---|---|---|---|
project_name | string | Yes | Project display name |
agent_id | enum | Yes | claude-code, cursor, codex, windsurf, custom |
pack_id | string | Yes | Intelligence pack ID used |
pack_version | string | Yes | Intelligence pack version used |
started_at | string | Yes | ISO timestamp when analysis started |
finished_at | string | Yes | ISO timestamp when analysis finished |
detected_stack | object | Yes | Detected stack metadata |
findings | array | Yes | Array of findings from the analysis |
summary | string | Yes | Human-readable summary |
finishkit_setupGet information about FinishKit and how to set it up. Shows what FinishKit does, your current API key status, and configuration examples for every supported IDE. Always works, even without an API key. No inputs required.
| URI | Description |
|---|---|
finishkit://projects | All projects as a JSON array |
finishkit://projects/{id} | Single project details by ID |
finishkit://runs/{run_id}/findings | All findings for a scan run |
finishkit://runs/{run_id}/events | Full event log for a scan run |
If you are an AI agent with access to FinishKit MCP tools:
scan_repo with the repository owner and nameget_findings for detailed findings listget_patches for generated code fixesscan_repo({ repo_owner: "myorg", repo_name: "myapp", run_type: "baseline" })
Then:
get_findings({ run_id: "<from scan_repo response>", category: "security" })
finishkit_setup to get setup instructionsscan_repo typically takes 2-8 minutes. It blocks until complete, no need to poll separately.Set the FINISHKIT_API_KEY environment variable with your API key:
FINISHKIT_API_KEY=fk_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
To get an API key:
fk_live_)API keys authenticate via Authorization: Bearer <key> on every request. Keep your key secret and never commit it to source control.
MIT - Copyright (c) 2026 FinishKit
FAQs
MCP server for FinishKit. Production readiness scanner for AI-built apps. Enables AI agents in Claude, Cursor, Windsurf, and VS Code to check if code is ready to ship.
The npm package @finishkit/mcp receives a total of 42 weekly downloads. As such, @finishkit/mcp popularity was classified as not popular.
We found that @finishkit/mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Security News
Open VSX has removed three extension IDs from its malicious-extension list as the legitimate publishers they impersonated move to claim the names for themselves.

Product
Socket’s PHP and Composer support is now in Beta for all customers, with PHP reachability analysis generally available.

Product
Socket is bringing experimental protection to Firefox, scanning 97,000+ extensions in Mozilla's official directory for malware and risky updates.