T
Together AI
Run Together AI hosted models over MCP.
·No reviews yet
Share:
About
Auto-generated
Together AI is a Model Context Protocol server in the Developer Tools category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about Together AI.
- What is the purpose of the Together AI MCP?
- The Together AI MCP allows you to run Together AI-hosted models. It provides an interface using the Model Context Protocol, enabling integration with various development environments.
- How can I integrate Together AI MCP with Cline?
- Configuration with Cline requires setting up the Together AI MCP as a stdio transport. You will need to specify the correct executable path and any required arguments in your Cline configuration file.
- Does the Together AI MCP require an API key for authentication?
- Yes, authentication for the Together AI MCP is done via an API key. This key is necessary to access and utilize the Together AI hosted models.
- What capabilities does the Together AI MCP offer?
- The Together AI MCP primarily exposes the ability to run Together AI hosted models. The specific tools and their functionalities depend on the underlying models and their exposed interfaces.
- What is the cost associated with using the Together AI MCP?
- The cost of using the Together AI MCP depends on the underlying Together AI hosted models and their pricing structures. Refer to Together AI's documentation for model-specific pricing details.
- Are there any prerequisites for using the Together AI MCP?
- A key prerequisite for using the Together AI MCP is having a valid API key from Together AI. You also need a client application that supports the Model Context Protocol (MCP) for interaction.
Install Together AI
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"together-ai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-together-ai"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"together-ai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-together-ai"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"together-ai": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-together-ai"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.