1
Clone the Quick Start Repository
This repository contains a simple “hello world” MCP server.
2
Configure Your Project
Next, you’ll configure the project with your details.
-
Set Package Name: Open
package.jsonand change thenameto something unique that you can publish on NPM, like@your-npm-username/my-first-deploxy-server. -
Configure NPM Auth: Create a file named
.npmrcin the project root. It’s a critical security practice to use an environment variable for your token..npmrc -
Configure Deploxy: Create a file named
.deploxy.json. The easiest way is to use the Project Creator on your dashboard and copy the generated JSON. Configuration looks like this:.deploxy.json
You can get your Deploxy token from the Tokens page.
3
Deploy with Deploxy
Now, run the deploy command. This single command will securely upload your server, build it, deploy it globally, and publish the lightweight proxy package to NPM.
That’s it! You can monitor the deployment on your Deploxy Dashboard. Once complete, you can run your new MCP server from anywhere with
npx.
