Skill vs. MCP: the MCP servers let your agent act on a Baseten workspace and search the docs; the skill teaches it how to do that effectively. Use both.
What you can do
Once connected, your agent can drive the full model lifecycle from inside your editor:- Author and deploy: create and push a custom Truss model or a multi-step Chain; deploy a pre-optimized model from the library; or call a hosted model through Model APIs.
- Optimize: pick the right runtime (TRT-LLM, BEI), tune the config, and iterate on a live deployment with
truss watch. - Debug: pull build and deployment logs, trace a failure, get a fix.
- Operate: promote across environments, adjust autoscaling, activate or deactivate, run a test prediction.
- Observe: status across models, deployments, training jobs, and environments.
- Train and fine-tune: launch and monitor training jobs (SFT, RL, LoRA), manage checkpoints, and deploy the result.
- Q&A over docs and best practices: answers grounded in current documentation, guides, and examples.
Set up
Create an API key with management permissions in your API key settings and set it in your shell so the installer can read it:-ginstalls for every detected tool-yskips prompts.
/mcp:
/baseten.
Its API key scopes each MCP instance to one workspace. To work with multiple workspaces, install additional instances under different names with different keys.
Set up for a specific agent
To wire up a tool by hand, add the MCP servers to its config (the docs server needs no auth, so omit its header for a docs-only setup) and install the skill withnpx skills add basetenlabs/baseten-skills.
npx add-mcp and npx skills add also detect Codex, Antigravity, Goose, Windsurf, and other supported agents. For GUI clients like Claude Desktop, add the server URL under their connector settings. Any MCP-compatible tool works with the URLs above.
Pull docs into your agent
- Direct URLs: agents can append
.mdto any page URL for clean, low-token content, or use llms.txt (page index) and llms-full.txt. - Context menu: the “Copy page” button at the top-right of any page copies it as Markdown (or opens it as plain text) to paste into your agent:

These docs also auto-host a lightweight single-file skill at docs.baseten.co/skill.md (
npx skills add https://docs.baseten.co). The baseten skill above supersedes it; reach for the docs skill only where you can’t install from the repo.