Build with Satcove

One API key. Five AI models. Consensus, chat, and verification — all from one endpoint.

Developer experience

Five lines.
Infinite power.

Install the SDK. Add your key. Access every major AI model, run consensus queries, and verify data — all from one endpoint.

5 AI models queried simultaneously
Consensus with agreement scoring
Free to start, Pro for unlimited
TypeScript SDK with full type safety
my-agent.ts
// One API key. Every AI model.
import { Satcove } from "satcove-sdk";

const agent = new Satcove({ apiKey: "pk_live_..." });

// Simple — auto-routes to best model
const answer = await agent.run({
  prompt: "Rewrite these titles for SEO",
  routing: "auto"
});

// Consensus — multiple AIs, one report
const verified = await agent.consensus({
  prompt: "Is this data accurate?",
  models: ["claude", "gpt-4o", "grok"],
});

verified.agreement   // 95%
verified.cost         // €0.045

For developers

Three ways to integrate

Use the SDK, connect via MCP, or call the REST API directly.

TypeScript SDK

Install, import, build. Full type safety.

$ npm install satcove-sdk

import { Satcove } from 'satcove-sdk'

const s = new Satcove({ apiKey })
await s.run({ prompt, model })
await s.consensus({ prompt })
await s.cove("Compare these options")

MCP Server

Connect Satcove to Claude Desktop or any MCP-compatible agent. Zero code.

// claude_desktop_config.json
{
"mcpServers": {
"satcove": {
"command": "npx",
"args": ["satcove-mcp"]
}
}
}

REST API

Direct HTTP calls. Works with any language, any framework.

# Chat
POST /api/v1/chat

# Consensus
POST /api/v1/consensus

# Cove Agent
POST /api/v1/max

# Verify data
POST /api/v1/verify
MIT LicenseTypeScriptNode 18+

Need
a second opinion?
Get five.

Start for free. No credit card required.