drio
Open app

ValTown MCP Server

Source

ValTown MCP Server - Execute ValTown functions from AI assistants

Catalog onlyCatalog onlySTDIO

Overview

ValTown MCP Server is a Model Context Protocol (MCP) server designed for ValTown that enables AI assistants to execute code within the ValTown environment.

To use the ValTown MCP Server, you can either download pre-built binaries for your platform, build from source using Deno, or run it directly with Deno. Ensure you have a valid ValTown API token set as an environment variable.

  • Execute ValTown functions from AI assistants. - Compatible with all MCP clients (e.g., Claude Desktop, Claude Code). - Cross-platform support (Windows, macOS, Linux).
  1. Integrating AI assistants with ValTown for executing commands.
  2. Automating tasks in the ValTown environment.
  3. Enhancing AI capabilities by allowing code execution.

Add to your AI client

Use these steps to connect ValTown MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "valtown-mcp-server-prashamtrivedi": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-valtown-mcp-server-prashamtrivedi"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "valtown-mcp-server-prashamtrivedi": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-valtown-mcp-server-prashamtrivedi"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "valtown-mcp-server-prashamtrivedi": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-valtown-mcp-server-prashamtrivedi"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "valtown-mcp-server-prashamtrivedi": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-valtown-mcp-server-prashamtrivedi"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "valtown-mcp-server-prashamtrivedi": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-valtown-mcp-server-prashamtrivedi"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "valtown-mcp-server-prashamtrivedi": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-valtown-mcp-server-prashamtrivedi"
      ]
    }
  }
}

FAQ

How do I obtain a ValTown API token?

You can obtain a ValTown API token from your ValTown account settings.

Is the ValTown MCP Server free to use?

Yes! The ValTown MCP Server is free to use.

What platforms does the ValTown MCP Server support?

It supports Windows, macOS, and Linux.