What you get
Each connected server exposes its own tools, and the agent uses them naturally in conversation—you describe the outcome you want, and it picks the right tools. Because several servers can coexist in one workspace, the agent can also chain them: pull data from one service, transform it, and push it to another, all within a single task.Two kinds of MCP server
MCP servers reach the agent over one of two transports.- Remote (HTTP/SSE)
- Local (stdio)
Remote servers run somewhere on the network and are reached by URL. Synti speaks both Streamable HTTP and Server-Sent Events (SSE). You provide the endpoint URL and, if the server requires it, an authentication method—OAuth, a bearer token, or none.
config.json
Configuration at a glance
An MCP source usestype: "mcp" plus an mcp block describing transport and authentication. Required fields are type, name, the transport details, and the auth method. Optional fields include a tagline, an icon (emoji, path, or URL), and—for local servers—arguments and environment variables. Synti can auto-discover an icon file placed alongside config.json.
For the full setup walkthrough, see Connecting servers. For credentials and OAuth, see Authentication.
Security
Synti is local-first, and MCP sources follow the same rule as every other source: secrets never live inconfig.json. Credentials are encrypted at ~/.synti/credentials.enc, and each workspace keeps its own sources and credentials isolated from the others, so connecting a server in one workspace never exposes it to another. Tool actions that change state still route through Permissions before they run.