-
Notifications
You must be signed in to change notification settings - Fork 2
Add model settings docs #475
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
tembo
wants to merge
1
commit into
main
Choose a base branch
from
tembo/update-docs-new-features-2026-03
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+95
−0
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,59 @@ | ||
| --- | ||
| title: "Model Settings" | ||
| description: "Configure default agents, provider keys, custom MCP servers, and model availability." | ||
| --- | ||
|
|
||
| Use **Settings > Models** in the [dashboard](https://app.tembo.io) to control how your workspace selects and runs models. | ||
|
|
||
| ## Default agent | ||
|
|
||
| Set the default agent and model Tembo uses for new tasks and automations. | ||
|
|
||
| - Pick the default from a single dropdown in **Settings > Models** | ||
| - You can still override agent/model per task or automation | ||
|
|
||
| ## Provider API keys | ||
|
|
||
| You can manage model provider credentials in one place: | ||
|
|
||
| - Anthropic API key | ||
| - OpenAI API key | ||
| - Amp API key | ||
| - Cursor API key | ||
| - AWS Bedrock access key, secret key, and region | ||
|
|
||
| Keys are saved at the workspace level and used when a selected model requires that provider. | ||
|
|
||
| ## Custom MCP servers (global JSON) | ||
|
|
||
| `globalMcpServers` lets you define shared MCP servers available across tasks and automations. | ||
|
|
||
| ```json | ||
| { | ||
| "mcpServers": { | ||
| "my-server": { | ||
| "command": "npx", | ||
| "args": ["-y", "@modelcontextprotocol/server-github"], | ||
| "env": { | ||
| "GITHUB_TOKEN": "ghp_xxx" | ||
| } | ||
| } | ||
| } | ||
| } | ||
| ``` | ||
|
|
||
| <Note> | ||
| This JSON is workspace-wide. Invalid JSON is rejected when you save. | ||
| </Note> | ||
|
|
||
| ## Available models | ||
|
|
||
| The **Available Models** list lets you enable or disable specific models for your organization. | ||
|
|
||
| - Models are enabled by default | ||
| - Org admins can toggle models on/off | ||
| - Non-admin members can view status but cannot change it | ||
|
|
||
| <Warning> | ||
| You cannot disable the model currently used by your default agent. Change the default agent model first. | ||
| </Warning> | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -32,3 +32,34 @@ GitHub, Linear, Sentry, and Postgres MCP servers are automatically available whe | |||||
| ## Custom servers | ||||||
|
|
||||||
| Bring your own MCP servers from the [Integrations page](https://app.tembo.io/integrations) using **Custom MCP**. Supports stdio, HTTP, and SSE, including OAuth. | ||||||
|
|
||||||
| ### Connection types | ||||||
|
|
||||||
| #### Remote (HTTP/SSE) | ||||||
|
|
||||||
| Use this for hosted MCP servers. | ||||||
|
|
||||||
| - Required: `name`, `serverUrl` | ||||||
| - Optional: static `headers` (for example, `Authorization`) | ||||||
| - If the server requires OAuth, Tembo returns an authorization URL and completes setup after you authorize | ||||||
|
|
||||||
| #### Stdio | ||||||
|
|
||||||
| Use this for command-based MCP servers started in the sandbox. | ||||||
|
|
||||||
| - Required: `name`, `command` | ||||||
| - Optional: `args` (space-separated in UI), `env` variables | ||||||
|
|
||||||
| Example: | ||||||
|
|
||||||
| ```json | ||||||
| { | ||||||
| "type": "stdio", | ||||||
| "name": "github-mcp", | ||||||
| "command": "npx", | ||||||
| "args": ["-y", "@modelcontextprotocol/server-github"], | ||||||
| "env": { | ||||||
| "GITHUB_TOKEN": "ghp_xxx" | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
| } | ||||||
| } | ||||||
| ``` | ||||||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This example looks like the same stdio server shape shown in
integrations/mcp.mdx, but it omits"type": "stdio". If the schemas are meant to match, adding it here would keep the docs consistent and avoid readers copying an incomplete config.