Bay Run
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Bay RunDiscover and serve an embedding model for my RAG pipeline on legal docs"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Bay Run
Bay Run is the decision and execution layer for durable specialist Pins at the canonical origin: https://run.huggingbay.xyz.
The default MCP front door is exactly three tools, in this order: coprocessor, run_pin, solve_task.
Quickstart: connect to MCP
Use the canonical Streamable HTTP MCP endpoint: https://run.huggingbay.xyz/mcp/. The live copy-paste auth and request contract is kept at https://run.huggingbay.xyz/quickstart.
Mint a resource-bound demo bearer, then make the primary Guard-first call:
BASE=https://run.huggingbay.xyz
TOKEN=$(curl -fsS -X POST "$BASE/oauth/token" \
-H 'Content-Type: application/json' \
-d '{"grant_type":"urn:bay-run:grant-type:demo","scope":"mcp:demo","resource":"https://run.huggingbay.xyz/mcp/"}' \
| python3 -c 'import json,sys; print(json.load(sys.stdin)["access_token"])')
curl -fsS -X POST "$BASE/mcp/" \
-H "Authorization: Bearer $TOKEN" \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"coprocessor","arguments":{"user_text":"<untrusted request>"}}}'coprocessor runs the canonical Guard first and never generates text or executes tools. Add
documents when retrieved chunks need bounded post-SAFE reranking. Read its action and evidence
before deciding whether a caller-owned generation or tool call may continue.
Related MCP server: Relay
Default MCP tools
Point an MCP client at https://run.huggingbay.xyz/mcp/. The public default surface is:
coprocessor— the primary bounded Guard-first call overuser_textand optional documents.run_pin— the direct alias for one of the four canonical Pins, using its published{pin_id,input}shape.solve_task— the open-ended fallback when no canonical Pin matches; providetask_descriptionandinput.
Advanced compatibility capabilities remain available through explicit live references:
Trust and data policy
Read the canonical data policy before sending input. The live quickstart documents receipt semantics, 401 recovery, and the published limits; do not infer capabilities from advanced routes.
Hugging Bay mirror catalog
Hugging Bay’s mirror catalog is available at https://huggingbay.xyz. Use each artifact's published
download plan for the currently admitted files. A drop-in HF_ENDPOINT compatibility origin is not
part of the public contract yet, so this repository does not advertise one prematurely.
For current catalog and serving information, use the generated Bay Run status snapshot. Mirror counts and family breakdowns are intentionally not copied here because they change.
This server cannot be deployed
Maintenance
Related MCP Connectors
One MCP endpoint for Claude, GPT & Gemini: 100+ tools + no-code connectors + agent workers.
MCP server for building and testing AI agents with multi-model experimentation and insights.
The OpenRouter for tools. One MCP connection gives any AI agent 254 hosted tools, pay per call.
Connect MCP clients to 2,000+ AI models without managing provider API keys.
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceMCP server that enables agents to dynamically switch between multiple AI models (OpenAI, Anthropic, Google, etc.) with unified protocol-driven configuration and capability discovery.Apache 2.0
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to access a unified catalog of tools from various APIs (OpenAPI, GraphQL, MCP, Google Discovery) through the MCP protocol.MIT
- AlicenseAqualityBmaintenanceA local MCP bridge that registers multiple AI API endpoints, enabling agents to automatically discover and route to models based on capabilities like chat, vision, reasoning, embedding, image generation, TTS, STT, and rerank.64 npmMIT
- FlicenseNot gradedqualityCmaintenanceA modular platform that enables LLM agents to discover, register, and execute both local tools and tools from external MCP servers, with REST APIs for server management and Streamable HTTP support.-