# io.github.idoco2003/vincikit (npm · @vincikit/mcp-server)

AI stack configurator with conversational interviews and intelligent recommendations

- Trust score: 66/100 (medium)
- Change this week: +19
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `@vincikit/mcp-server`: 66/100 (this document), [markdown](https://verifymcp.io/servers/idoco2003-vincikit/vincikit-mcp-server.md), [page](https://verifymcp.io/servers/idoco2003-vincikit/vincikit-mcp-server)

## Channel facts

- Registry: `npm`
- Package: `@vincikit/mcp-server`
- Version: `2.0.0`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (123 of 125), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (123 of 125), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 19/100
  - Repository check failed: the declared repository URL returned HTTP 404.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 204 days ago).
  - Security-disclosure policy not yet verified: we couldn't inspect the source repository.
- **Schema Quality & AI Usability**: 85/100
  - 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 685 tokens (~48/item across 14 items; 12 tools + 2 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add idoco2003-vincikit -- npx -y @vincikit/mcp-server
```

### Codex

```bash
codex mcp add idoco2003-vincikit -- npx -y @vincikit/mcp-server
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "idoco2003-vincikit": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@vincikit/mcp-server"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add idoco2003-vincikit --command npx --arg -y --arg @vincikit/mcp-server
```

### Hermes

```yaml
mcp_servers:
  idoco2003-vincikit:
    command: "npx"
    args: ["-y", "@vincikit/mcp-server"]
```

### Other

```json
{
  "mcpServers": {
    "idoco2003-vincikit": {
      "command": "npx",
      "args": [
        "-y",
        "@vincikit/mcp-server"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 66, +4)

- [functional improvement] Stability: unverified → 0.27

### 2026-08-02 (score 62, +41)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional regression] Tool coverage: 100 → unverified
- [functional regression] Schema quality: 100 → unverified
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] License: unverified → pass
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] Dependency health: unverified → partial
- [functional] Licence: MIT

### 2026-07-31 (score 21, −8)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 29, +11)

- [security regression] Malware scan: pass → unverified
- [functional improvement] Schema quality: unverified → 100
- [functional improvement] Tool coverage: unverified → 100

### 2026-07-28 (score 18, −29)

- [functional regression] Tool coverage: 100 → unverified
- [functional regression] Schema quality: 100 → unverified

### 2026-07-27 (score 47)

First indexed and scored.

## MCP tools (12)

### `start_interview` (~75 tokens)

Start a new VinciKit interview session. This begins a conversational flow to understand the user's project and recommend the optimal AI + tools stack. Returns the first question to ask.

Input parameters:

- `goal` (string, required): What the user wants to build or achieve (e.g., "I want to build a drone that detects weeds in my farm")

### `answer_question` (~63 tokens)

Submit the user's answer to the current interview question. Returns either the next question or the final recommendation if the interview is complete.

Input parameters:

- `answer` (string, required): The user's answer to the current question
- `session_id` (string, required): The session ID returned by start_interview

### `skip_to_recommendation` (~39 tokens)

Skip remaining questions and generate recommendation with current answers. Use when user wants quick results.

Input parameters:

- `session_id` (string, required): The session ID

### `get_session` (~33 tokens)

Retrieve a session by ID to view or continue an interview.

Input parameters:

- `session_id` (string, required): The session ID to retrieve

### `update_session` (~78 tokens)

Update specific answers in a session and optionally regenerate the recommendation.

Input parameters:

- `regenerate` (boolean): Whether to regenerate the recommendation after updating (default: true)
- `session_id` (string, required): The session ID to update
- `updates` (object, required): Fields to update (e.g., { "budget": "growth", "timeline": "month" })

### `list_sessions` (~52 tokens)

List all sessions for a user (requires email or API key for persistence).

Input parameters:

- `api_key` (string): VinciKit API key (alternative to email)
- `email` (string): User email to retrieve sessions for

### `link_account` (~58 tokens)

Link a session to an email for persistence across devices and conversations. Creates a VinciKit account if one doesn't exist.

Input parameters:

- `email` (string, required): Email address to link the session to
- `session_id` (string, required): The session ID to link

### `visualize_stack` (~64 tokens)

Generate a text/ASCII visualization of a stack configuration. Great for displaying recommendations in a clear, visual format.

Input parameters:

- `session_id` (string): Session ID to visualize (uses the session's recommendation)
- `stack` (object): Alternatively, provide a stack object directly to visualize

### `list_tools` (~33 tokens)

List all available tools in the VinciKit catalog, optionally filtered by category.

Input parameters:

- `category` (string): Filter by category

### `get_tool_details` (~39 tokens)

Get detailed information about a specific tool.

Input parameters:

- `tool_id` (string, required): The tool ID (e.g., "notion", "shopify")

### `quick_recommend` (~59 tokens)

Get a quick stack recommendation without the full interview. Good for users who know what they want.

Input parameters:

- `budget` (string): Budget level
- `goal` (string, required): What the user wants to build
- `scope` (string): Project scope

### `create_setup_link` (~63 tokens)

Create a personalized setup link for VinciKit.com. The link preserves the session configuration for one-click setup on the web.

Input parameters:

- `email` (string): Optional email to associate with the setup
- `session_id` (string, required): Session ID to create a setup link for

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/idoco2003-vincikit/vincikit-mcp-server#diagnostics

## Score history

- 2026-08-03: 66
- 2026-08-02: 62
- 2026-08-01: 21
- 2026-07-31: 21
- 2026-07-30: 29
- 2026-07-28: 18
- 2026-07-27: 47

## Links

- npm package: https://www.npmjs.com/package/@vincikit/mcp-server
- Socket report: https://socket.dev/npm/package/@vincikit/mcp-server
- Changelog RSS feed: https://verifymcp.io/servers/idoco2003-vincikit/vincikit-mcp-server/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/idoco2003-vincikit/vincikit-mcp-server/changelog.json
- HTML version of this page: https://verifymcp.io/servers/idoco2003-vincikit/vincikit-mcp-server
