Managed MCP Platform

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 seconds
tilted devLocal dev server with hot reload
tilted deployDeploy to Cloudflare Workers edge
tilted logsTail invocation logs in real-time

B. Pre-Built Servers

Ready-to-connect servers for popular services.

Supabase
Notion
Gmail
GitHub
Google Sheets
WhatsApp
Indian Gov APIs

CLI Workflow

Terminal

# 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.

query_databaseinsert_rowsupdate_rowsget_schemarun_migration

@tiltedprompts/mcp-notion

Read and write Notion pages, databases, and blocks. Full CRUD with rich text support.

search_pagesread_pagecreate_pageupdate_databasequery_database

@tiltedprompts/mcp-gmail

Read inbox, send emails, manage labels. OAuth scoped to minimal permissions.

read_inboxsend_emailsearch_messagesmanage_labelsread_thread

@tiltedprompts/mcp-github

Issues, pull requests, repo management. Works with both personal and org repos.

list_issuescreate_issuecreate_prreview_prmanage_repo

@tiltedprompts/mcp-sheets

Read and write Google Sheets data. Batch operations, formula support, named ranges.

read_sheetwrite_cellscreate_sheetbatch_updateget_named_ranges

@tiltedprompts/mcp-whatsapp

Send and receive WhatsApp messages via Gupshup BSP. Template messages, media, and buttons.

send_messagesend_templateread_messagessend_mediamanage_contacts

@tiltedprompts/mcp-indian-apis

Indian government API integrations — GST verification, PAN lookup, UPI transaction status.

verify_gstlookup_pancheck_upi_statusverify_aadhaar_maskedifsc_lookup

Client Setup

TiltedMCP servers work with any client that supports MCP over Streamable HTTP transport. Here's how to connect the most popular ones.

Claude Desktop

{

"mcpServers": {

"tilted-supabase": {

"url": "https://supabase.mcp.tiltedprompts.com/mcp",

"transport": "streamable-http"

}

}

}

Cursor / VS Code

// .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

Continue