Bay Run
FreeNot checkedEnables agents to discover, evaluate, and serve task-specialist models (embeddings, reranking, classification, extraction) with OpenAI-compatible endpoints and
About
Enables agents to discover, evaluate, and serve task-specialist models (embeddings, reranking, classification, extraction) with OpenAI-compatible endpoints and MCP tools for routing, embedding, reranking, and extraction.
README
Bay Run is a free-at-launch, OpenAI-compatible REST and MCP service for small-model inference at the canonical origin: https://run.huggingbay.xyz.
Free launch: 30 seconds
The launch tier is free. Mint a demo bearer with a form-encoded client_credentials request, then call the API. The published guardrails are 60 requests/minute and 1,500/day; demo bearers expire after 24 hours.
Start with the live, copy-paste quickstart: https://run.huggingbay.xyz/quickstart.
The repository’s standalone demo is a small classify → signed receipt → verify flow:
python examples/bakeoff.py
import json
from urllib.parse import urlencode
from urllib.request import Request, urlopen
BASE = "https://run.huggingbay.xyz"
def post(path, body, headers):
request = Request(BASE + path, data=json.dumps(body).encode(), headers=headers)
return json.load(urlopen(request))
token_request = Request(
BASE + "/oauth/token",
data=urlencode({"grant_type": "client_credentials"}).encode(),
headers={"Content-Type": "application/x-www-form-urlencoded"},
)
token = json.load(urlopen(token_request))["access_token"]
headers = {"Authorization": f"Bearer {token}", "Content-Type": "application/json"}
result = post("/v1/classify", {"input": "The setup was quick and clear.", "model": "auto"}, headers)
receipt = result["provenance_receipt"]
verified = post("/v1/provenance/verify", {"receipt": receipt}, headers)
assert verified.get("valid") is True or verified.get("receipt_valid") is True
print(result["labels"][0])
print("receipt verified")
This demo uses the real /v1/classify and provenance-verification surfaces; it does not invent a bake-off endpoint.
REST and SDKs
The REST surface includes OpenAI-compatible chat/completions (including SSE streaming and tools), embeddings, reranking, classification, summarization, RAG, calculation, JSON validation, and memory. The thin SDKs live beside this checkout during build/test:
pip install -e ../bayrun-sdk/python
npm install ../bayrun-sdk/js
from bayrun import Client
c = Client()
answer = c.classify("A helpful result.")
stream = c.chat([{"role": "user", "content": "Say hello."}], stream=True)
import { Client } from "bayrun";
const c = new Client();
const answer = await c.classify("A helpful result.");
const stream = await c.chat([{ role: "user", content: "Say hello." }], { stream: true });
Durable remember/recall/forget memory is owner-delegated and is not authorized for the shared demo bearer. Use a purpose-specific developer key or a client registered with token_endpoint_auth_method=client_secret_post.
Adapter snippets for OpenAI Python, Vercel AI SDK, LangChain, and LlamaIndex are in docs/integrations.md.
MCP: exactly three tools
Point an MCP client at https://run.huggingbay.xyz/mcp/. The live server exposes exactly:
get_task_quoterun_taskverify_result
Token and request-shape details are kept in the live quickstart so the copy-paste contract stays current.
Trust and data policy
REST results carry signed provenance receipts, and task execution returns a signed receipt that can be checked with the verification surface. Read the receipt semantics and the live verification request at https://run.huggingbay.xyz/quickstart.
Before sending data, read the canonical policy: https://run.huggingbay.xyz/.well-known/data-policy.json. The published policy says Bay Run does not train on inputs.
Hugging Face drop-in mirror catalog
Hugging Bay’s mirror catalog is available at https://huggingbay.xyz. For Hugging Face Hub clients that honor HF_ENDPOINT, point the client at the mirror origin:
export HF_ENDPOINT=https://huggingbay.xyz
The catalog currently lists 893+ mirrored models. Check the mirror’s current serving status before relying on a specific model or repository path.
Installing Bay Run
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/barneywohl/bay-runFAQ
Is Bay Run MCP free?
Yes, Bay Run MCP is free — one-click install via Unyly at no cost.
Does Bay Run need an API key?
No, Bay Run runs without API keys or environment variables.
Is Bay Run hosted or self-hosted?
A hosted option is available: Unyly runs the server in the cloud, no local setup required.
How do I install Bay Run in Claude Desktop, Claude Code or Cursor?
Open Bay Run on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Notion
Read and write pages in your workspace
by NotionLinear
Issues, cycles, triage — from Claude
by LinearGoogle Drive
Search and read your Drive files
by Googlemindsdb/mindsdb
Connect and unify data across various platforms and databases with [MindsDB as a single MCP server](https://docs.mindsdb.com/mcp/overview).
by mindsdbfulcradynamics/fulcra-context-mcp
MCP server for accessing personal health and biometric data including sleep stages, heart rate, HRV, glucose, workouts, calendar, and location via the Fulcra Li
by fulcradynamicsaymericzip/intlayer
A MCP Server that enhance your IDE with AI-powered assistance for Intlayer i18n / CMS tool: smart CLI access, access to the docs.
by aymericziprinadelph/Agent-MCP
A framework for creating multi-agent systems using MCP for coordinated AI collaboration, featuring task management, shared context, and RAG capabilities.
by rinadelphWhenLabs-org/when
Developer toolkit: auto-detect stack for AI context files, catch port conflicts, validate .env schemas, spot docs drift, audit dependency licenses, and time cod
by WhenLabs-orgBeltran12138/wecom-docs-mcp-server
WeCom (Enterprise WeChat) document operations via MCP: create, read, and edit Docs and Smartsheets (9 tools). Fills the doc-CRUD gap — existing WeCom MCP server
by Beltran12138madbonez/caldav-mcp
Universal MCP server for CalDAV protocol integration. Works with any CalDAV-compatible calendar server including Yandex Calendar, Google Calendar (via CalDAV),
by madbonezCompare Bay Run with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All productivity MCPs
