Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Generated by https://smithery.ai. See: https://smithery.ai/docs/build/project-config
# Build stage
FROM oven/bun:1.2.18-alpine AS builder

Expand Down Expand Up @@ -66,4 +67,4 @@ CMD ["bun", "run", "dist/index.js"]
LABEL maintainer="Nicolas Torres <nicotordev@gmail.com>"
LABEL description="v0-mcp-ts: A powerful MCP server for v0.dev AI integration"
LABEL version="1.0.0"
LABEL repository="https://github.com/nicotordev/v0-mcp-ts"
LABEL repository="https://github.com/nicotordev/v0-mcp-ts"
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
[![Bun](https://img.shields.io/badge/Bun-1.2+-black.svg)](https://bun.sh/)
[![Tests](https://github.com/nicotordev/v0-mcp-ts/workflows/Tests/badge.svg)](https://github.com/nicotordev/v0-mcp-ts/actions)
[![Build](https://github.com/nicotordev/v0-mcp-ts/workflows/Build/badge.svg)](https://github.com/nicotordev/v0-mcp-ts/actions)
[![smithery badge](https://smithery.ai/badge/@nicotordev/v0-mcp-ts)](https://smithery.ai/server/@nicotordev/v0-mcp-ts)

> 🚀 **A powerful Model Context Protocol (MCP) server that integrates v0.dev AI capabilities for modern web development**

Expand Down Expand Up @@ -61,6 +62,16 @@ npm install -g bun

### 1. Installation

### Installing via Smithery

To install v0-mcp-ts for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@nicotordev/v0-mcp-ts):

```bash
npx -y @smithery/cli install @nicotordev/v0-mcp-ts --client claude
```

### Installing manually

```bash
git clone https://github.com/nicotordev/v0-mcp-ts.git
cd v0-mcp-ts
Expand Down
19 changes: 19 additions & 0 deletions smithery.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Smithery configuration file: https://smithery.ai/docs/build/project-config

startCommand:
type: stdio
commandFunction:
# A JS function that produces the CLI command based on the given config to start the MCP on stdio.
|-
(config) => ({ command: 'bun', args: ['run', 'dist/index.js'], env: { V0_API_KEY: config.v0ApiKey } })
configSchema:
# JSON Schema defining the configuration options for the MCP.
type: object
required:
- v0ApiKey
properties:
v0ApiKey:
type: string
description: v0.dev API key
exampleConfig:
v0ApiKey: your_v0_api_key_here
Loading