Vercel API MCP server

Integrates with Vercel's platform to manage deployments, DNS records, domains, projects, and environment variables through natural language interactions without navigating the Vercel dashboard or API.
Back to servers
Setup instructions
Provider
ZukAi
Release date
May 01, 2025
Language
TypeScript
Stats
19 stars

The SmileyCoin website is a React-based platform that provides information about the SmileyCoin cryptocurrency. The site features a live price tracker and comprehensive information across multiple pages including introduction, getting started guides, wallet options, and details about the coin and mining.

Installation

Prerequisites

First, you need to install Node.js:

  1. Download and install Node.js from the official website: https://nodejs.org/en/
  2. Verify the installation by running these commands in your terminal:
node -v
npm -v

Setting Up the Project

  1. Clone the repository or download the project files
  2. Navigate to the project folder in your terminal
  3. Install all dependencies:
npm install

Running the Application

Development Mode

To run the application in development mode:

npm start

This will launch the app at http://localhost:3000 in your browser. The page will automatically reload when you make changes to the code.

Production Build

To create a production build:

npm run build

This command builds the app for production in the build folder, with optimized performance and minified code.

Deploying to GitHub Pages

The site can be deployed to GitHub Pages with these commands:

npm run build
npm run deploy

Production Deployment on a Server

Using PM2 to Manage the Application

  1. Build the application:
npm run build
  1. Install PM2 globally:
sudo npm install -g pm2
  1. Add a deployment script to your package.json:
{
  "scripts": {
    "deploy": "pm2 start ./server.sh --name yourAppName"
  }
}
  1. Create a server.sh file in the same directory as package.json:
echo "Serving yourAppName!"
serve -s build
  1. Make the server.sh file executable:
chmod +x server.sh
  1. Deploy the application:
npm run deploy

To configure PM2 to start on system boot, refer to the PM2 documentation at http://pm2.keymetrics.io/docs/usage/startup/

Site Structure

The website consists of:

  • Home page with a header containing navigation links and a live price tracker
  • Five subpages:
    • Introduction - Details about SmileyCoin
    • Get Started - Ways to acquire SmileyCoin
    • Wallets - Information about compatible wallets
    • Coin and Mining Information - Technical details about the cryptocurrency
    • Details - Additional information about SmileyCoin

The site also features a Twitter feed from @smileyCoinNews on the home page.

How to install this MCP server

For Claude Code

To add this MCP server to Claude Code, run this command in your terminal:

claude mcp add-json "vercel-api" '{"command":"npx","args":["-y","vercel-api-mcp"]}'

See the official Claude Code MCP documentation for more details.

For Cursor

There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json file so that it is available in all of your projects.

If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json file.

Adding an MCP server to Cursor globally

To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".

When you click that button the ~/.cursor/mcp.json file will be opened and you can add your server like this:

{
    "mcpServers": {
        "vercel-api": {
            "command": "npx",
            "args": [
                "-y",
                "vercel-api-mcp"
            ]
        }
    }
}

Adding an MCP server to a project

To add an MCP server to a project you can create a new .cursor/mcp.json file or add it to the existing one. This will look exactly the same as the global MCP server example above.

How to use the MCP server

Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.

The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.

You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.

For Claude Desktop

To add this MCP server to Claude Desktop:

1. Find your configuration file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json

2. Add this to your configuration file:

{
    "mcpServers": {
        "vercel-api": {
            "command": "npx",
            "args": [
                "-y",
                "vercel-api-mcp"
            ]
        }
    }
}

3. Restart Claude Desktop for the changes to take effect

Want to 10x your AI skills?

Get a free account and learn to code + market your apps using AI (with or without vibes!).

Nah, maybe later