TiltedMCP
A managed platform for deploying, hosting, and discovering MCP servers. Think “Vercel for MCP.” Push your server code, get a production-ready endpoint with auth, monitoring, and marketplace distribution.
What is the Model Context Protocol?
MCP is an open standard created by Anthropic that provides a universal way for AI agents to connect with external data sources and tools. It uses JSON-RPC 2.0 over Streamable HTTP transport.
Each MCP server exposes three primitives that agents can interact with:
Tools
Actions the agent can take — query a database, send a message, create a resource.
Resources
Read-only data the agent can access — schemas, configurations, documentation.
Prompts
Reusable templates for consistent agent behavior across different contexts.
Two Sides of the Product
A. The Platform
The hosting and deployment service for MCP servers.
npx create-tilted-mcpScaffold a server in 60 secondstilted devLocal dev server with hot reloadtilted deployDeploy to Cloudflare Workers edgetilted logsTail invocation logs in real-timeB. Pre-Built Servers
Ready-to-connect servers for popular services.
CLI Workflow
# 1. Scaffold from template
npx create-tilted-mcp my-supabase-server --template supabase
# 2. Install and configure
cd my-supabase-server
cp .env.example .env # Add your Supabase URL + key
# 3. Develop locally
tilted dev # Starts at http://localhost:8787/mcp
# 4. Deploy to production
tilted deploy
✨ Live at: my-supabase-server.mcp.tiltedprompts.com
Platform Features
CLI-First Workflow
Scaffold, develop, test, and deploy entirely from the terminal. No dashboard required for the core loop.
Auto-Injected OAuth 2.1
Every deployed server gets OAuth 2.1 with PKCE via Auth0. Zero auth code from the developer — handled at the platform layer.
Edge Deployment
Servers deploy to Cloudflare Workers — 300+ edge locations, zero cold starts, sub-50ms latency globally.
Built-In Monitoring
Invocation logs, p50/p99 latency, error rates, and alerting. Know exactly how your servers perform in production.
Marketplace Distribution
Publish servers to the marketplace. Other developers discover and connect with one click. Usage-based revenue share.
Streamable HTTP Transport
Production transport that supports bidirectional streaming. SSE fallback for legacy clients. Full MCP spec compliance.
Pre-Built Servers
@tiltedprompts/mcp-supabase
Query, insert, and update across any Supabase project. Connection pooling, RLS-aware queries, and schema introspection.
@tiltedprompts/mcp-notion
Read and write Notion pages, databases, and blocks. Full CRUD with rich text support.
@tiltedprompts/mcp-gmail
Read inbox, send emails, manage labels. OAuth scoped to minimal permissions.
@tiltedprompts/mcp-github
Issues, pull requests, repo management. Works with both personal and org repos.
@tiltedprompts/mcp-sheets
Read and write Google Sheets data. Batch operations, formula support, named ranges.
@tiltedprompts/mcp-whatsapp
Send and receive WhatsApp messages via Gupshup BSP. Template messages, media, and buttons.
@tiltedprompts/mcp-indian-apis
Indian government API integrations — GST verification, PAN lookup, UPI transaction status.
Client Setup
TiltedMCP servers work with any client that supports MCP over Streamable HTTP transport. Here's how to connect the most popular ones.
{
"mcpServers": {
"tilted-supabase": {
"url": "https://supabase.mcp.tiltedprompts.com/mcp",
"transport": "streamable-http"
}
}
}
// .cursor/mcp.json or .vscode/mcp.json
{
"servers": {
"tilted-supabase": {
"url": "https://supabase.mcp.tiltedprompts.com/mcp"
}
}
}
Tech Stack
Runtime
Cloudflare Workers (TypeScript)
SDK
@modelcontextprotocol/sdk + FastMCP
Auth
Auth0 OAuth 2.1 with PKCE
Dashboard
Next.js + tRPC + Neon PostgreSQL
Analytics
ClickHouse (high-volume)
Transport
Streamable HTTP + SSE fallback
Next: TiltedVoice
Voice AI — Whisper + Indian Languages