Clous

Integrations

Use Clous anywhere your agents run.

One hosted MCP server, an open-source MCP package, OpenAPI 3.1 + a machine-readable llms.txt, and clean REST. Clous drops into the assistant, IDE, framework, or language you already use.

Agents & MCP

Model Context Protocol

Connect Clous to any MCP client and your agent gets typed tools — no query DSL, one envelope, cursor pagination.

AI assistants

Works with every assistant

Ship Clous context into the chat assistants your users already live in — to learn the API or query it.

Frameworks

Drops into your stack

Clous publishes OpenAPI 3.1 and an llms.txt index, so it registers as tools in any tool-calling framework — no custom adapter.

Languages

Every language, no SDK required

It's just HTTP + a bearer token and one JSON envelope. Use it from anywhere.

cURLbash
curl -s "https://api.clous.ai/v1/raises?min_amount=5000000&limit=5" \
  -H "Authorization: Bearer clous_live_…"
Pythonpy
import requests

r = requests.get(
    "https://api.clous.ai/v1/raises",
    params={"min_amount": 5_000_000, "limit": 5},
    headers={"Authorization": "Bearer clous_live_…"},
)
data = r.json()["data"]
TypeScriptts
const r = await fetch(
  "https://api.clous.ai/v1/raises?min_amount=5000000&limit=5",
  { headers: { Authorization: "Bearer clous_live_…" } },
);
const { data } = await r.json();

Don't see your tool?

If it can make an HTTP request or speak MCP, it works with Clous today. Tell us what you're building and we'll help wire it.