Basic MCP Server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Basic MCP Serverecho 'Hello, world!'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP Server (Dokku-ready)
Features
MCP over WebSocket at
/mcpHealth check at
/healthTools:
echo(message)db_query(sql, params[])— SELECT-only, parameterized
Local Dev
cp .env.example .env
npm install
npm run dev
# open http://localhost:3000/healthBuild & Run
npm run build
npm startDeploy to Dokku (no SSH keys)
On your server (SSH via password for learning), assuming:
app name: mcp
domain: mcp.deepthinkersai.com
Postgres service: mcpdb
Create app, domain, db, link, HTTPS:
sudo dokku apps:create mcp
sudo dokku domains:set mcp mcp.deepthinkersai.com
sudo dokku plugin:install https://github.com/dokku/dokku-postgres.git postgres || true
sudo dokku postgres:create mcpdb
sudo dokku postgres:link mcpdb mcp
sudo dokku plugin:install https://github.com/dokku/dokku-letsencrypt.git letsencrypt || true
sudo dokku config:set --no-restart mcp DOKKU_LETSENCRYPT_EMAIL=you@example.com
sudo dokku letsencrypt:enable mcp
sudo dokku letsencrypt:cron-job --addThis server cannot be deployed
Maintenance
Related MCP Connectors
Build, deploy, and host full-stack web apps from any MCP client. DB, auth, storage, cron included.
- SupabaseOAuthcom.supabase
MCP server for interacting with the Supabase platform
MCP server for InsForge BaaS — database, storage, edge functions, and deployments
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceA minimal WebSocket-based MCP server implementation that enables modern tool integrations with VSCode, Claude, and other applications.5 npmISC
- AlicenseNot gradedqualityDmaintenanceA production-ready MCP server that enables chatting with PostgreSQL databases via Cloudflare Workers with GitHub OAuth authentication.MIT
- FlicenseNot gradedqualityDmaintenanceA WebSocket-based MCP server that enables mail operations including retrieval, search, and statistics for email addresses. Can be deployed on Render.com or run locally.2-
- AlicenseNot gradedqualityDmaintenanceA production-ready MCP server that enables users to interact with PostgreSQL databases via natural language on Cloudflare Workers. It features GitHub OAuth for role-based access control, allowing for secure schema discovery, data querying, and write operations.MIT