- Skills: 12 domain-specific skills that load on demand and teach your agent how to write correct Together AI code (right model IDs, SDK patterns, best practices).
- Docs MCP server: Gives your agent live access to this documentation site so it can look up current information without leaving your editor.
Skills
When your agent detects a relevant task, it automatically loads the right skill. You can also call a skill explicitly with/<skill_name>.
Install skills
SKILL.md per installed skill (for example, ls your-project/.claude/skills/together-*/SKILL.md).
Available skills
Use a single skill
Each skill works on its own for focused tasks. Describe what you want and the right skill activates, or invoke a specific skill with/<skill_name>.
If you prompt your agent with:
together-chat-completions to generate correct SDK code with the right model ID, streaming setup, tool definitions, and the complete tool-call loop.
Chain skills together
Skills define hand-off boundaries between products, so the agent can chain them together for tasks that span multiple Together AI services. If you prompt your agent with:together-embeddings: Generates dense vectors and builds a cosine-similarity retriever with reranking.together-chat-completions: Generates answers from the retrieved context.together-evaluations: Scores answer quality with an LLM judge and downloads the per-row results.
SDK compatibility
All generated code targets the Together Python v2 SDK (together>=2.0.0) and the Together TypeScript SDK (together-ai). If you’re upgrading from v1, see the Python v2 SDK migration guide.
Docs MCP server
Model Context Protocol (MCP) lets AI coding agents call external tools and pull in external data. The Together AI docs MCP server gives your agent direct access to this documentation site without leaving your editor.Install
The fastest install is the universalnpx add-mcp shortcut, which detects your active client and configures the server in one step. The other tabs cover client-specific install commands and manual configuration.
- Universal
- Claude Code
- Cursor
- VS Code
- Codex
- OpenCode
Prompt examples
Once installed, your agent can answer prompts like:- “Write a script to process data with batch inference.”
- “Build a simple chat app with Together AI’s chat completions API.”
- “Find the best open-source model for frontier coding.”
- “How do I fine-tune a model on my own data?”
Resources
- Skills repository on GitHub: Source code, full reference docs, and runnable scripts for all 12 skills.
- Together AI cookbook: End-to-end examples and tutorials.
- Python v2 SDK migration guide: Breaking changes between the v1 and v2 SDKs.
- Agent Skills specification: The open standard these skills follow.