For developers & agents

API Reference

Two public, unauthenticated, machine-facing endpoints: a real MCP server and a REST search API. Both are live in production right now — the console on the right calls the actual server, and every example below is a request that actually works, not illustrative pseudocode.

Overview

Streamable HTTP transport, fully stateless (see what that means and why). No API key, no auth, no rate-limit headers to negotiate. POST JSON-RPC 2.0 requests with Content-Type: application/json and Accept: application/json, text/event-stream.

MCP server — /mcp

List available tools

POST https://tunovix.com/mcp
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/list",
  "params": {}
}

Returns the current JSON Schema for all 24 tools below — call this first, don't hardcode the schema. The console on the right already did, for real, when this page loaded.

Call a tool

POST https://tunovix.com/mcp
{
  "jsonrpc": "2.0",
  "id": 2,
  "method": "tools/call",
  "params": {
    "name": "website_cost_calculator",
    "arguments": { "siteType": "marketing", "pages": 8, "features": ["cms"], "design": "custom" }
  }
}

Read a resource

POST https://tunovix.com/mcp
{
  "jsonrpc": "2.0",
  "id": 3,
  "method": "resources/read",
  "params": { "uri": "tunovix://agent-build-methodology" }
}

Available tools

Click any tool above to load it into the console →

Available resources

tunovix://agent-build-methodologyEvals, guardrails, audit logging, cost monitoring, runbook, security review — structured facts, not marketing copy
tunovix://use-casesEvery published use-case workflow pattern — slug, category, steps, integrations

Full usage guides: run-cost-calculators SKILL.md and agent-build-methodology SKILL.md, or the machine-readable index at agent-skills/index.json.

Search API — /api/ai-search

Plain REST, no auth, built specifically for agents that want a direct answer instead of crawling every page. Semantic + keyword search over the whole site's content (services, pricing, blog, use cases, case studies).

GET https://tunovix.com/api/ai-search?q=does+tunovix+build+wordpress+migrations&max_results=5

max_results is optional, 1–20, defaults to 5. score is roughly 0–1 (higher = more relevant). See RAG development for what's actually behind this endpoint.

Everything else machine-facing

  • /llms.txt and /llms-full.txt — curated site index and full content export
  • /.well-known/agent-card.json — signed A2A Agent Card (ES256, JWS)
  • /api/availability — real-time booking-capacity check, the one thing a cached/crawled copy of this site can't answer
  • Every blog post and use case has a plain-markdown mirror at its URL + .md

Building something with these?

MCP development and RAG development cover what a build for your own tools looks like, or get in touch directly.

Have a product in mind? Let's scope it this week.

A 30-minute call gets you a rough timeline and cost — no obligation, no sales deck.