home / mcp / yourware mcp server
mcp server for yourware
Configuration
View docs{
"mcpServers": {
"ai-zerolab-yourware-mcp": {
"command": "uvx",
"args": [
"yourware-mcp@latest",
"stdio"
],
"env": {
"YOURWARE_API_KEY": "YOUR_API_KEY"
}
}
}
}Yourware MCP lets you upload your project to Yourware, supporting both single files and directories. It runs as an MCP server that you connect to from your MCP clients, streamlining your upload workflow and key management through a dedicated API key.
You use this MCP server by wiring it into your MCP client that supports stdio-based MCP connections. The server is configured to run locally and communicate through the uvx runtime. To upload your project to Yourware, set up the MCP server with the provided command and start it in your environment. Your API key is required to authorize actions with Yourware.
Common usage pattern:
- Prepare your Yourware API key and export it as an environment variable named YOURWARE_API_KEY.
- Create a configuration that defines the MCP server and how to launch it.
- Start the MCP server so your MCP client can connect and perform uploads.
Prerequisites you need before starting:
- Access to Yourware and the ability to generate an API key.
- A runtime environment where you can execute the `uvx` command from your MCP setup. Ensure you can run `uvx` without restrictions.Step 1: Set up Yourware API key
- Create or obtain an API key from Yourware.
- Save it as an environment variable named YOURWARE_API_KEY.
Step 2: Create the MCP configuration file
- Create a file named mcp_config.json with the following content that defines the Yourware MCP server using stdio mode.
{
"mcpServers": {
"yourware-mcp": {
"command": "uvx",
"args": ["yourware-mcp@latest", "stdio"],
"env": {
"YOURWARE_API_KEY": "<REPLACE_WITH_YOUR_API_KEY>"
}
}
}
}Run the MCP server using the stdio configuration defined above. The command uses the uvx runtime to start the local MCP server that communicates with Yourware.
uvx yourware-mcp@latest stdio