Back to blog
featuremcpclideveloper-tools

Your AI Assistant Can Run Svortie Agents

1 min read

Your coding assistant already reads files, runs commands, writes code. Now it can trigger Svortie agents too.

The MCP Tool

The Svortie MCP Tool exposes your agents as an MCP server. Connect it to Claude Code, Cursor, or any MCP-compatible client.

	curl -fsSL https://svortie.com/dl/mcp | sh

Single binary, no runtime dependencies. Add it to your MCP config with your Svortie API key and your assistant can create agents, trigger runs, and use the results in its own workflow. Research agent finds competitors, coding assistant uses that in its response. Without you switching tabs.

You'll need an API key from your account page. The installer prompts for it, or set SVORTIE_API_KEY in your environment.

The CLI

Manage Svortie from the terminal. Create agents, trigger runs, manage API keys, configure MCP servers. Everything the dashboard does, but scriptable.

	curl -fsSL https://svortie.com/dl/cli | sh
	svortie agents list
svortie agents run <id>
svortie schedules create --cron "0 9 * * *" --agent <id>

Pipe it into other tools. Run it in CI. Put it in a Makefile.

No runtime, no dependencies

Both tools are single self-contained binaries compiled with Bun. No Node, no package manager needed. Linux and macOS, Intel and ARM.

Try it

	curl -fsSL https://svortie.com/dl/mcp | sh
curl -fsSL https://svortie.com/dl/cli | sh
svortie --help
Back to all posts