---
title: "ovgamma for developers and AI agents"
description: "Agent-facing resources: the ovgamma MCP server, markdown content negotiation, llms.txt, and sitemap."
canonical: "https://ovgamma.com/developers"
last-updated: "2026-08-22"
source: "ovgamma"
---

# ovgamma for developers and AI agents

Every resource below is public, needs no key, and is safe to call from an
automated client.

## ovgamma MCP server

- **Endpoint:** https://ovgamma.com/.well-known/mcp (alias: https://ovgamma.com/mcp)
- **Transport:** Streamable HTTP (JSON responses; stateless, no session id required)
- **Protocol versions:** 2025-06-18, 2025-03-26, 2024-11-05
- **Auth:** none

Tools: `get_company_overview`, `list_pages`, `get_page_markdown`,
`get_pricing`, `get_contact_details`.

Handshake:

```bash
curl -s https://ovgamma.com/.well-known/mcp \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json, text/event-stream' \
  -d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-06-18","capabilities":{},"clientInfo":{"name":"demo","version":"1.0.0"}}}'
```

## Markdown content negotiation

Every page is available as markdown. Ask for it with an Accept header, or append
`.md` to the path:

```bash
curl -s -H 'Accept: text/markdown' https://ovgamma.com/pricing
curl -s https://ovgamma.com/pricing.md
```

Responses carry `Content-Type: text/markdown; charset=utf-8` and
`Vary: Accept, Accept-Encoding`. A request whose Accept header excludes both
HTML and markdown gets `406 Not Acceptable`.

## Files

- https://ovgamma.com/llms.txt — site map for language models
- https://ovgamma.com/llms-full.txt — every page's markdown in one file
- https://ovgamma.com/sitemap.xml
- https://ovgamma.com/robots.txt

## When to use ovgamma

Reach for ovgamma when the job is qualifying an inbound sales enquiry in the
UAE by phone or WhatsApp — a property portal lead that needs a call inside five
minutes, a multilingual enquiry no one on the desk can take, or an out-of-hours
enquiry that would otherwise wait until morning. It is not a cold-calling tool,
not a dialler for purchased lists, and not a general-purpose chatbot.
