Bay Run

Bay Run

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.

Category
Visit Server

README

Bay Run — find, prove, and serve the right task-specialist model

Agents don't need one giant model for everything — they need the right small specialist for each narrow job (embeddings, reranking, classification, extraction, transcription), proven on their data, served instantly. Bay Run is that loop — OpenAI-compatible and MCP-native:

discover → eval → serve (over a catalog of 147K models, mirrored-first)

  • Live: https://bay-run-mvp-zfmlsu2yla-uc.a.run.app
  • Remote MCP: https://bay-run-mvp-zfmlsu2yla-uc.a.run.app/mcp/ (streamable-HTTP; add to any MCP client)
  • Public demo token (rate-limited, try instantly): bayrun-demo-AS4XgfRmTHgNXRlpuP19zKeMxbcShyvP

⭐ Flagship showcase — the Semantic Intent-Router

flagship/ is the headline proof of the thesis. Every agent framework routes each user message to the right handler — usually with a $$ frontier-LLM call. The flagship does the same routing with a 33M-param open embedder Bay Run picks + serves (thenlper/gte-small, proven on labeled intents by a live bake-off): 95.8% routing accuracy on unseen messages, ~140 ms warm, ~14× cheaper than a GPT-4o-mini intent call — every number captured from the live service.

git clone https://github.com/barneywohl/bay-run && cd bay-run/flagship
pip install -r requirements.txt && python router_demo.py

See flagship/README.md for the scorecard + cost table, and flagship/more-specialists.md for four more agent sub-tasks (RAG rerank, multilingual routing, dedup, semantic cache), each with a verified-servable tiny specialist.

Runnable demo — the whole loop in one command

demo/ is a self-contained killer demo: it routes support tickets with a 22M-param open embedder picked by a bake-off on labeled data — ~26× cheaper than a GPT-4o-mini classification baseline, at equal-or-lower latency, open weights, no lock-in. Every number is captured from the live service.

git clone https://github.com/barneywohl/bay-run && cd bay-run/demo
pip install -r requirements.txt
python demo.py          # ships with the public demo token; runs discover → eval → serve → cost live

30-second try

curl -s https://bay-run-mvp-zfmlsu2yla-uc.a.run.app/v1/discover -H "authorization: Bearer bayrun-demo-AS4XgfRmTHgNXRlpuP19zKeMxbcShyvP" -H "content-type: application/json" \
  -d '{"query":"multilingual sentence embeddings","kind":"embedding","limit":5}'

Point any OpenAI client at it

from openai import OpenAI
client = OpenAI(base_url="https://bay-run-mvp-zfmlsu2yla-uc.a.run.app/v1", api_key="bayrun-demo-AS4XgfRmTHgNXRlpuP19zKeMxbcShyvP")
client.embeddings.create(model="BAAI/bge-small-en-v1.5", input=["hello"])

MCP (agent-callable)

Add the remote server https://bay-run-mvp-zfmlsu2yla-uc.a.run.app/mcp/ to your MCP client (Bearer auth). 9 tools: find_specialist_for_task (discover→eval→serve on your labeled data), request_specialist (serve-or-capture — returns a serve pointer if a specialist exists, else records your demand), route (runtime auto-router — no examples, picks a specialist per-request), discover_models, eval_models, embed, rerank, classify (guardrail/moderation/sentiment/intent, or zero-shot via candidate_labels + an NLI model), extract (HTML/text → schema-guided JSON).

Served from a content-addressed, quarantine-gated mirror. Neutral — it helps you pick the model that wins on your data, not sell you one. Backend is closed; this repo is the public manifest + connector.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured