Fire in da houseTop Tip:Most people pay up to $340 per month for Perplexity, MidJourney, Runway, ChatGPT, and more - but you can get them all your AI tools for $15 with Galaxy. It's free to test!Fire in da houseCheck it out

valtown-mcp-server

MCP.Pizza Chef: PrashamTrivedi

ValTown MCP Server is a cross-platform MCP server enabling AI assistants to execute ValTown environment functions seamlessly. Compatible with all MCP clients like Claude Desktop and Claude Code, it facilitates real-time interaction and code execution within ValTown. Available as pre-built binaries or source builds, it supports Windows, macOS, and Linux, making it versatile for diverse development environments.

Use This MCP server To

Execute ValTown environment functions from AI assistants Integrate ValTown capabilities into MCP client workflows Enable cross-platform AI-driven code execution in ValTown Automate ValTown tasks via natural language commands Build AI-powered tools leveraging ValTown functions

README

ValTown MCP Server

A Model Context Protocol (MCP) server for ValTown that allows AI assistants to execute code in the ValTown environment.

Features

  • Execute ValTown functions from AI assistants
  • Compatible with all MCP clients (Claude Desktop, Claude Code, etc.)
  • Cross-platform support (Windows, macOS, Linux)

Installation

Option 1: Use pre-built binaries

Download the appropriate binary for your platform from the latest release:

  • Linux: valtown-mcp-linux
  • Windows: valtown-mcp-windows.exe
  • macOS: valtown-mcp-macos

Option 2: Build from source

  1. Install Deno
  2. Clone this repository
  3. Build the binaries:
    deno task build          # Builds for all platforms
    deno task build:linux    # Builds only for Linux
    deno task build:windows  # Builds only for Windows
    deno task build:macos    # Builds only for macOS
    

Option 3: Run directly with Deno

deno task start  # Run the server
deno task dev    # Run the server with watch mode for development

Configuration

The server requires a ValTown API token to operate. Set the following environment variable:

  • VAL_TOWN_API_TOKEN: Your ValTown API token (starts with vtwn_)

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

Usage with MCP Clients

Claude Desktop

Windows Configuration

Add the following to your Claude Desktop configuration:

"valtown": {
  "command": "C:\\path\\to\\valtown-mcp-windows.exe",
  "env": {
    "VAL_TOWN_API_TOKEN": "vtwn_KEY"
  }
}

macOS Configuration

Add the following to your Claude Desktop configuration:

"valtown": {
  "command": "/path/to/valtown-mcp-macos",
  "env": {
    "VAL_TOWN_API_TOKEN": "vtwn_KEY"
  }
}

Linux Configuration

Add the following to your Claude Desktop configuration:

"valtown": {
  "command": "/path/to/valtown-mcp-linux",
  "env": {
    "VAL_TOWN_API_TOKEN": "vtwn_KEY"
  }
}

Running with Deno (all platforms)

If you have Deno installed, you can run the server directly:

"valtown": {
  "command": "deno",
  "args": ["run", "--allow-net", "--allow-env", "--allow-read", "/path/to/mod.ts"],
  "env": {
    "VAL_TOWN_API_TOKEN": "vtwn_KEY"
  }
}

Claude Code

Add the ValTown MCP server to Claude Code using the CLI:

claude mcp add valtown /path/to/valtown-mcp-linux -e VAL_TOWN_API_TOKEN=vtwn_KEY

On Windows, use:

claude mcp add valtown C:\path\to\valtown-mcp-windows.exe -e VAL_TOWN_API_TOKEN=vtwn_KEY

On macOS, use:

claude mcp add valtown /path/to/valtown-mcp-macos -e VAL_TOWN_API_TOKEN=vtwn_KEY

Other MCP Compatible Clients

For other MCP compatible clients, configure them to point to the ValTown MCP server binary and ensure the VAL_TOWN_API_TOKEN environment variable is set.

Troubleshooting

  • Ensure your ValTown API token is valid
  • Check that the server has network access
  • Verify the correct permissions are set on the binary (Linux/macOS may require chmod +x)

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Changelog

See the CHANGELOG for a list of notable changes to this project.

License

This project is licensed under the MIT License - see the LICENSE file for details.

valtown-mcp-server FAQ

How do I install the ValTown MCP Server?
You can install it by downloading pre-built binaries for your platform or building from source using Deno as described in the GitHub README.
Which platforms does the ValTown MCP Server support?
It supports Windows, macOS, and Linux platforms with dedicated binaries for each.
Can the ValTown MCP Server work with different MCP clients?
Yes, it is compatible with all MCP clients including Claude Desktop and Claude Code.
What is required to build the ValTown MCP Server from source?
You need to install Deno, clone the repository, and run the provided build tasks for your target platform.
Does the ValTown MCP Server allow real-time function execution?
Yes, it enables AI assistants to execute ValTown functions in real time within the MCP framework.
Is the ValTown MCP Server open source?
Yes, the source code is available on GitHub for review and contributions.
How does the ValTown MCP Server enhance AI assistant capabilities?
It allows AI assistants to directly execute ValTown environment functions, enabling richer, interactive workflows.