Installation & Setup
This section walks you through getting started with ContextMesh via our hosted Web or the Local CLI.
1. Web App Sign-in
Visit the Portal Go to https://contextmesh.io
Connect Your Phantom Wallet
Click Connect Wallet in the top-right
Select Phantom and approve the connection in your wallet extension
No email or password required
Create Your First Workspace
Click New Workspace
Give it a name (e.g.
My First MCP)Optionally connect your GitHub or GitLab account for manifest imports
Import or Start a Manifest
In your workspace dashboard, click Import Manifest to upload an existing
manifest.jsonOr click Create New to launch the drag-&-drop manifest editor
Explore & Publish
Customize your building blocks in the web IDE
When ready, click Publish → Export Manifest to download or share
2. Local CLI (mcp run) Installation
mcp run) Installation2.1 Prerequisites
Node.js ≥ 14.x
npm (or yarn)
Git ≥ 2.x
Phantom Wallet browser extension
2.2 Install the CLI
# Using npm
npm install --global @contextmesh/cli
# Or using yarn
yarn global add @contextmesh/cli2.3 Authenticate via Wallet
# Point the CLI at your ContextMesh endpoint
export CONTEXTMESH_ENDPOINT=https://contextmesh.ioRun
mcp loginFollow the prompt to open your browser
Click Connect Wallet and approve in Phantom
Return to the CLI—your session is now authenticated
2.4 Run a Manifest
# Navigate to your project folder containing manifest.json
cd /path/to/your/project
# Start your MCP locally
mcp runThis command will:
Validate your
manifest.jsonSpin up a local development server
Watch for changes and hot-reload your blocks
You’re now ready to build, test, and iterate on your MCP manifests locally! 🎉
Last updated