Overview
along_select_safe sets the active Safe for your MCP session. After calling this tool, all calls to the along tool will query the selected Safe’s knowledge graph. The selection is persisted server-side on your OAuth token, so it carries across conversations and reconnects.
When to use
- After calling
along_list_safesto retrieve the Safe ID - When switching to a different knowledge base mid-session
- At the start of a new conversation to explicitly set the active Safe
Parameters
The ID of the Safe to select. Retrieve this value from
along_list_safes.Response
On success, the tool returns a confirmation with the previous and new Safe details.Human-readable confirmation that the Safe was selected successfully.
ID of the Safe that was active before this call, or
null if no Safe was previously selected.ID of the newly selected Safe.
Display name of the newly selected Safe.
Error responses
| Error message | Cause |
|---|---|
"safeId is required" | You passed an empty or missing safeId. |
"Safe not found or not active" | The Safe ID does not exist or the Safe has been deactivated. |
"You do not have access to this safe" | You do not have permission to connect to this Safe. |
"Could not update session. Please reconnect." | The OAuth token may have expired. Re-authorize and try again. |
Selecting a Safe that is already active returns an immediate success message without making any changes.