Bay Run
БесплатноНе проверенEnables agents to discover, evaluate, and serve task-specialist models (embeddings, reranking, classification, extraction) with OpenAI-compatible endpoints and
Описание
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.
Установка Bay Run
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/barneywohl/bay-runFAQ
Bay Run MCP бесплатный?
Да, Bay Run MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Bay Run?
Нет, Bay Run работает без API-ключей и переменных окружения.
Bay Run — hosted или self-hosted?
Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.
Как установить Bay Run в Claude Desktop, Claude Code или Cursor?
Открой Bay Run на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
Notion
Read and write pages in your workspace
автор: NotionLinear
Issues, cycles, triage — from Claude
автор: LinearGoogle Drive
Search and read your Drive files
автор: Googlemindsdb/mindsdb
Connect and unify data across various platforms and databases with [MindsDB as a single MCP server](https://docs.mindsdb.com/mcp/overview).
автор: 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
автор: 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.
автор: aymericziprinadelph/Agent-MCP
A framework for creating multi-agent systems using MCP for coordinated AI collaboration, featuring task management, shared context, and RAG capabilities.
автор: 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
автор: 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
автор: Beltran12138madbonez/caldav-mcp
Universal MCP server for CalDAV protocol integration. Works with any CalDAV-compatible calendar server including Yandex Calendar, Google Calendar (via CalDAV),
автор: madbonezCompare Bay Run with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории productivity
