data
Together AI MCP, CLI, and Lua Integration for AI Agents
Together AI integration docs for AI agents: MCP gateway setup, Together AI CLI commands, Lua API reference, credentials, and function schemas.Together AI for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Agent Surfaces
Machine-Readable Metadata
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
together-ai.togetherai_list_models | Read read | 0 | List all available AI models on Together AI, including open-source and fine-tuned models. Returns model IDs, types, pricing, and capabilities. |
together-ai.togetherai_create_completion | Write write | 9 | Create a chat completion using a Together AI model. Send a conversation with messages and receive a generated response. Supports models like Llama, Mixtral, Qwen, DBRX, and more. |
together-ai.togetherai_list_fine_tunes | Read read | 0 | List all fine-tuning jobs on Together AI. Returns job IDs, status, base model, training file, and creation timestamps. |
together-ai.togetherai_get_fine_tune | Read read | 1 | Get details of a specific fine-tuning job on Together AI. Returns status, training progress, hyperparameters, and the output model ID once complete. |
together-ai.togetherai_list_files | Read read | 0 | List all files uploaded to Together AI. Returns file IDs, filenames, sizes, and purposes (e.g. fine-tune training data, results). |
together-ai.togetherai_get_file | Read read | 1 | Get details of a specific file on Together AI. Returns file metadata including name, size, purpose, and creation date. |
together-ai.togetherai_get_current_user | Read read | 0 | Get the authenticated Together AI user's account information, including name, email, and plan details. |