Yourware MCP server

Enables direct uploading of web projects to yourware.so hosting platform without leaving your development environment
Back to servers
Setup instructions
Provider
Wh1isper
Release date
Apr 01, 2025
Language
Python
Package
Stats
2.4K downloads
8 stars

The Yourware MCP server allows you to easily upload your projects to the Yourware platform. It supports both single file uploads and entire directory uploads, making it simple to share your code and applications through Yourware's deployment system.

Installation and Setup

Prerequisites

Before using the Yourware MCP server, you need to:

  1. Create an account and login to yourware
  2. Create a new API key through the yourware interface (you can chat with the LLM to create and store the API key)
  3. Set the YOURWARE_API_KEY environment variable with your newly created API key

Configuration Options

General Configuration

You can configure your MCP client (like Cline, Cursor, or Windsurf) with the following settings:

{
  "mcpServers": {
    "yourware-mcp": {
      "command": "uvx",
      "args": ["yourware-mcp@latest", "stdio"],
      "env": {}
    }
  }
}

Cursor Configuration

To configure in Cursor:

  1. Go to Cursor settings → features → MCP Servers
  2. Add a new MCP Server
  3. Name it yourware-mcp
  4. Set the command to uvx yourware-mcp@latest stdio

Claude Code Configuration

For Claude Code, use this command to configure the MCP server:

claude mcp add yourware-mcp -s user -- uvx yourware-mcp@latest stdio

Environment Variables

The only required environment variable is:

  • YOURWARE_API_KEY: Your Yourware API authentication key

You can either set this manually or allow the LLM to configure it for you during setup.

Usage

After configuration, you can use your MCP-enabled editor or interface to upload files or entire projects to Yourware. The server handles both single file uploads and directory uploads automatically.

Your deployed project will be available at a Yourware URL (example: https://v9gfmmif5s.app.yourware.so/).

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 "yourware-mcp" '{"command":"uvx","args":["yourware-mcp@latest","stdio"],"env":[]}'

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": {
        "yourware-mcp": {
            "command": "uvx",
            "args": [
                "yourware-mcp@latest",
                "stdio"
            ],
            "env": []
        }
    }
}

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": {
        "yourware-mcp": {
            "command": "uvx",
            "args": [
                "yourware-mcp@latest",
                "stdio"
            ],
            "env": []
        }
    }
}

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