Sign In

@finishkit/mcp

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@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 code is ready to ship.

Source
npmnpm
Version
0.3.1
Version published
Weekly downloads
73
35.19%
Maintainers
1
Weekly downloads
 
Created
Source

@finishkit/mcp

npm version MCP Compatible License: MIT

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

ToolDescription
scan_repoCheck if your app is ready to ship. Triggers a production readiness scan and returns a prioritized finish plan.
get_scan_statusCheck progress of a production readiness scan. Returns current phase and progress percentage.
get_findingsGet the production readiness report with prioritized findings blocking launch.
get_patchesGet auto-generated code patches that fix production readiness issues.
list_projectsList all repositories connected to FinishKit for production readiness scanning.
create_projectGet instructions to connect a new GitHub repository to FinishKit.
request_intelligence_packRequest a production readiness analysis pack tailored to your technology stack.
sync_findingsSync production readiness findings from a local analysis back to the FinishKit dashboard.
finishkit_setupGet setup instructions, API key status, and configuration examples for every supported IDE.

Quick Start

No API key required to get started. The server starts in setup mode and guides you through configuration.

1. Run setup

npx @finishkit/mcp setup

This auto-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 --vscode

2. Restart your AI client

3. Try it out

Ask "is my app ready to ship?" or use the finishkit_setup tool to see configuration details and all available tools.

4. Get an API key when ready

Follow the setup guidance to get a free API key at finishkit.app. Then re-run setup with your key:

npx @finishkit/mcp setup --api-key fk_live_your_key_here

Restart your AI client after adding the key.

Manual Configuration

If you prefer to configure manually, 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/mcp

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, 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.

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.

ParameterTypeRequiredDescription
repo_ownerstringYesGitHub org or username (e.g., myorg)
repo_namestringYesRepository name without owner (e.g., my-app)
run_typeenumNobaseline (default), pr, or manual_patch
commit_shastringNoSpecific 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.

ParameterTypeRequiredDescription
run_idstringYesRun ID from scan_repo or the dashboard

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).

ParameterTypeRequiredDescription
run_idstringYesRun ID of a completed scan
categoryenumNoblockers, security, deploy, stability, tests, ui
severityenumNoMinimum severity: critical, high, medium, low
limitnumberNoMax 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.

ParameterTypeRequiredDescription
run_idstringYesRun 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.

ParameterTypeRequiredDescription
repo_ownerstringYesGitHub org or username
repo_namestringYesRepository 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.

ParameterTypeRequiredDescription
frameworkstringYesWeb framework (e.g., nextjs, remix, vite)
languageenumYestypescript or javascript
package_managerenumYesnpm, pnpm, yarn, or bun
framework_versionstringNoFramework version (e.g., 16.0.0)
integrationsarrayNoDetected integrations (e.g., ["supabase", "stripe"])
dependenciesobjectNoPackage versions for CVE lookup
focusenumNofull (default), security, api, deploy, stability

sync_findings

Sync production readiness findings from a local analysis back to the FinishKit dashboard. Creates a run record and inserts findings with deduplication.

ParameterTypeRequiredDescription
project_namestringYesProject display name
agent_idenumYesclaude-code, cursor, codex, windsurf, custom
pack_idstringYesIntelligence pack ID used
pack_versionstringYesIntelligence pack version used
started_atstringYesISO timestamp when analysis started
finished_atstringYesISO timestamp when analysis finished
detected_stackobjectYesDetected stack metadata
findingsarrayYesArray of findings from the analysis
summarystringYesHuman-readable summary

finishkit_setup

Get 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.

Resources Reference

URIDescription
finishkit://projectsAll projects as a JSON array
finishkit://projects/{id}Single project details by ID
finishkit://runs/{run_id}/findingsAll findings for a scan run
finishkit://runs/{run_id}/eventsFull 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_repo with the repository owner and name
  • The tool handles the full lifecycle (trigger, poll, wait for completion)
  • Returns finding counts by severity and category
  • Call get_findings for detailed findings list
  • Call get_patches for 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

Key facts

  • scan_repo typically 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

Set the FINISHKIT_API_KEY environment variable with your API key:

FINISHKIT_API_KEY=fk_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

To get an API key:

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

Keywords

mcp

FAQs

Package last updated on 28 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts