TogetherAI

Connect Integrations to
TogetherAI

Build advanced AI agents with TogetherAI. Connect 600+ integrations, automate workflows, and deploy with ease using Metorial.

Back to TogetherAI overview

Creating and Managing Server Deployments

Server deployments in Metorial define which integrations are available to your AI agents. This guide explains how to create and configure them.

What is a Server Deployment?

A server deployment is a collection of integrations that your AI agent can access. Think of it as a "toolbox" for your agent—you choose which tools to include based on what your application needs.

Creating a Server Deployment

  1. Log in to your Metorial dashboard
  2. Navigate to "Server Deployments"
  3. Click "Create New Deployment"
  4. Give your deployment a descriptive name (e.g., "Production CRM Tools")
  5. Select the integrations you want to include
  6. Click "Create"
  7. Copy the deployment ID—you'll need this in your code

Using Server Deployments in Code

Once you have a deployment ID, use it in your withProviderSession call:

await metorial.withProviderSession(
  metorialAiSdk,
  { 
    serverDeployments: ['dep_abc123xyz'] // Your deployment ID
  },
  async session => {
    // Your AI logic here
  }
);

Multiple Deployments

You can use multiple deployments simultaneously if your agent needs access to different sets of tools:

await metorial.withProviderSession(
  metorialAiSdk,
  { 
    serverDeployments: [
      'dep_crm_tools',      // CRM integrations
      'dep_calendar_tools'  // Calendar integrations
    ]
  },
  async session => {
    // Agent has access to both CRM and calendar tools
  }
);

Best Practices

  • Be specific: Only include integrations your agent actually needs
  • Use multiple deployments: Separate concerns (e.g., dev vs. production)
  • Name clearly: Use descriptive names to identify deployments easily
  • Test first: Create a test deployment before using in production

Managing Deployments

You can update deployments at any time through the dashboard:

  • Add or remove integrations
  • Rename deployments
  • Delete unused deployments
  • Clone deployments for different environments

TogetherAI on Metorial

Build powerful AI applications with TogetherAI and Metorial's comprehensive integration platform. Connect TogetherAI's diverse collection of open-source language models to over 600 integrations through our MCP-powered, open-source SDKs. Metorial makes it effortless to give your TogetherAI-based agents access to calendars, databases, communication tools, project management platforms, and hundreds of other services in just a couple of lines of Python or TypeScript code. Whether you're leveraging Llama, Mistral, or other models available through TogetherAI's platform, Metorial eliminates integration complexity so you can focus on building intelligent features. Our developer-first approach handles authentication, API management, error handling, and rate limiting automatically—no more maintaining brittle integration code or debugging OAuth flows. With Metorial's open-core model, you get the transparency and flexibility of open source with the reliability and support you need for production applications. Stop wasting engineering cycles on integration plumbing and start shipping AI-powered features that differentiate your product and delight your users. Let Metorial handle the connections while you concentrate on creating breakthrough AI experiences.

Connect anything. Anywhere.

Ready to build with Metorial?

Let's take your AI-powered applications to the next level, together.

About Metorial

Metorial provides developers with instant access to 600+ MCP servers for building AI agents that can interact with real-world tools and services. Built on MCP, Metorial simplifies agent tool integration by offering pre-configured connections to popular platforms like Google Drive, Slack, GitHub, Notion, and hundreds of other APIs. Our platform supports all major AI agent frameworks—including LangChain, AutoGen, CrewAI, and LangGraph—enabling developers to add tool calling capabilities to their agents in just a few lines of code. By eliminating the need for custom integration code, Metorial helps AI developers move from prototype to production faster while maintaining security and reliability. Whether you're building autonomous research agents, customer service bots, or workflow automation tools, Metorial's MCP server library provides the integrations you need to connect your agents to the real world.

Star us on GitHub