[ Oh my AI ] / Developers
Developer Portal · Vercel Production Environment

Oh my AI — Developer Portal & API Documentation

Welcome to the Oh my AI developer hub. Oh my AI provides production-grade interfaces designed for autonomous AI agents, tool-calling LLMs, and human software engineering teams. Our infrastructure is deployed globally on Vercel with edge caching, Serverless Functions, and content negotiation.

1. Machine Interfaces Overview

All developer resources and machine interfaces follow published web and AI protocol standards:

2. Model Context Protocol (MCP) Server

Oh my AI exposes an MCP server for Claude Desktop, Cursor, ChatGPT, and custom autonomous agents using Streamable HTTP transport.

Discovery & Live Handshake

Perform an initial discovery request or JSON-RPC handshake against the endpoint:

GET https://ohmyai-exedev.vercel.app/.well-known/mcp
Accept: application/json

This returns the server card discovery manifest:

{
  "mcpVersion": "2024-11-05",
  "serverInfo": {
    "name": "oh-my-ai",
    "version": "1.0.0",
    "description": "Oh my AI MCP server: agency services, consultation scoping, and AI capability discovery."
  },
  "transport": {
    "type": "streamable-http",
    "endpoint": "/api/mcp"
  },
  "capabilities": {
    "tools": { "listChanged": false }
  }
}

Available Tools

3. REST API Endpoints

POST /api/intake

Submit a new project inquiry or workflow automation scoping request.

POST https://ohmyai-exedev.vercel.app/api/intake
Content-Type: application/json

{
  "systemType": "agent",
  "process": "Automate customer support triage and Zendesk ticket drafting.",
  "timing": "immediate",
  "contact": {
    "name": "Alex Developer",
    "company": "Enterprise Corp",
    "email": "alex@example.com"
  }
}

4. Vercel Hosting & Edge Infrastructure

Oh my AI is engineered and hosted on Vercel:

5. Authentication & Security

Public discovery endpoints (MCP server-card, OpenAPI specification, sitemap, llms.txt) are publicly readable without authentication. Private and production agent tool executions accept bearer token authentication:

Authorization: Bearer <YOUR_API_KEY>

6. Developer Links & References