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:
- Model Context Protocol (MCP): Streamable HTTP live handshake at
/.well-known/mcpand/api/mcp. - OpenAPI 3.1 Specification: Machine-readable JSON schema at
/openapi.json. - Content Negotiation: Automated Markdown delivery via
Accept: text/markdowncompliant with acceptmarkdown.com. - Agent Discovery: Structured index at
/llms.txt, extended context at/llms-full.txt, and guidance at/agent-instructions.txt.
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
get_services: Enumerate Oh my AI production capabilities (AI agents, GPT applications, workflow automation, and custom integrations).estimate_timeline: Calculate delivery timeline, milestones, and architectural tiers for an automation use case.submit_inquiry: Programmatically submit project requirements or consultation requests.get_company_info: Retrieve verified legal entity details, KvK registration, Maastricht headquarters, and contact points.
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:
- Framework: React 19 + Vite 6 client-side application bundled to
dist/client. - Edge Routing:
vercel.jsonconfigured with automatedVary: Accept, Accept-Encodingcaching. - Zero Latency: Global Anycast CDN delivering instant response times across Europe and worldwide.
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
- OpenAPI Specification: /openapi.json
- MCP Manifest: /.well-known/mcp.json
- LLMs Context: /llms.txt
- Full Company Context: /llms-full.txt
- Agent Instructions: /agent-instructions.txt