Wrangle your Stack.
Website · All 150 Tools · Complete Bundle · Docs · Changelog
150 focused self-hosted tools — webhook inboxes, status pages, feature flags, error tracking, analytics, link shorteners, secret managers, and more. Each tool is a single Go binary (~12MB) with embedded SQLite. No Docker, no Postgres, no Redis, no vendor lock-in. Your data lives on your server.
Plus an LLM proxy platform with 76 middleware modules and 16 providers.
All 150 tools for $29/mo. Free tier on every tool. stockyard.dev/complete
# Install a single tool
curl -fsSL stockyard.dev/corral/install.sh | sh
stockyard-corral
# → Dashboard: http://localhost:8760/ui
# Install multiple tools
curl -fsSL stockyard.dev/install-tools.sh | sh -s -- headcount paddock saltlick
# Or use a preset bundle
curl -fsSL stockyard.dev/install-tools.sh | sh -s -- --starter # 5 popular tools
curl -fsSL stockyard.dev/install-tools.sh | sh -s -- --devtools # 8 developer tools
curl -fsSL stockyard.dev/install-tools.sh | sh -s -- --ops # operations toolscurl -fsSL stockyard.dev/install-menu.sh | shdocker run -d -p 4200:4200 -e OPENAI_API_KEY=sk-... ghcr.io/stockyard-dev/stockyard:latestbrew tap stockyard-dev/tap
brew install stockyard-corral stockyard-headcount stockyard-paddock| Tool | Replaces | What it does |
|---|---|---|
| Corral | Hookdeck ($25/mo) | Webhook capture, inspect, replay, forward |
| Headcount | Mixpanel ($20/mo) | Privacy-first user analytics, funnels, retention |
| Paddock | Statuspage ($79/mo) | Public status page with incidents and notifications |
| Salt Lick | LaunchDarkly ($50/mo) | Feature flags, gradual rollouts, kill switches |
| Seismograph | Sentry ($26/mo) | Error tracking and exception aggregation |
| Lasso | Bitly ($35/mo) | Link shortener with custom domains and QR codes |
| Strongbox | 1Password ($18/mo) | Encrypted secret manager with team access |
| Ledger | QuickBooks ($15/mo) | Double-entry bookkeeping and reports |
| Sentinel | PagerDuty ($21/mo) | Alert manager with escalation policies |
All 150 tools. One license key. Unlimited instances.
SaaS stack: Sentry + Statuspage + LaunchDarkly + Bitly + Mixpanel = $210+/mo
Stockyard: All 150 tools = $29/mo
- One license key unlocks Pro on every tool
- Run as many instances as you need
- Your rate locks in when you subscribe
- Cancel any time — tools keep running on free tier
Stockyard also includes an LLM proxy platform — the tool that started it all. Point your OPENAI_BASE_URL at it and get cost tracking, caching, safety filters, rate limiting, audit trails, and automatic cost routing.
# Install the full platform
curl -fsSL https://stockyard.dev/install.sh | sh
export OPENAI_API_KEY=sk-...
stockyard start
# → Proxy: http://localhost:4200/v1
# → Dashboard: http://localhost:4200/uifrom openai import OpenAI
client = OpenAI(
base_url="http://localhost:4200/v1",
api_key="your-openai-key"
)
response = client.chat.completions.create(
model="gpt-4o-mini",
messages=[{"role": "user", "content": "Hello!"}]
)- 76 middleware modules — rate limiting, caching, failover, safety filters, cost caps, audit logging
- 16 LLM providers — OpenAI, Anthropic, Gemini, Groq, Mistral, DeepSeek, Ollama, and more
- ~400ns proxy overhead across the full middleware chain
- ~25MB binary, embedded SQLite, zero external dependencies
Platform details → · LLM Platform pricing →
┌─── Single Binary (~12MB per tool) ──────────────┐
│ │
│ HTTP Server ──→ REST API ──→ SQLite (WAL mode) │
│ │ │
│ └──→ Dashboard (embedded, serves at /ui) │
│ │
│ No external database. No Docker required. │
│ Download, run, done. │
└───────────────────────────────────────────────────┘
Connect MCP-compatible AI editors (Claude Desktop, Cursor, Windsurf) to Stockyard:
{
"mcpServers": {
"stockyard": {
"url": "http://localhost:4200/mcp/sse"
}
}
}Auto-updated by CI. See full changelog for details.
git clone https://github.com/stockyard-dev/Stockyard.git
cd Stockyard
# Open-source proxy (Apache 2.0)
CGO_ENABLED=0 go build -o stockyard-proxy ./cmd/stockyard-proxy/
./stockyard-proxy
# Full platform (BSL 1.1)
CGO_ENABLED=0 go build -o stockyard ./cmd/stockyard/
./stockyardRequires Go 1.22+. No other dependencies.
- Quickstart (5 min)
- All 150 Tools
- Configuration
- API Reference (360+ endpoints)
- SDKs (Python, Go, TypeScript)
- Benchmarks
- API Sandbox
- vs LiteLLM
Stockyard Proxy — the core LLM proxy with 24 middleware modules, provider routing, model aliasing, caching, and failover — is open source under the Apache License 2.0.
Stockyard Platform + Tools — the full binary including all 76 modules, the dashboard, all 150 standalone tools, and all platform products — is licensed under the Business Source License 1.1.
See docs/licensing/open-core-boundary.md for the full boundary.
stockyard.dev · Wrangle your Stack.