Build, run, and monitor AI/ML workflows from any agent. MCP server extension for Claude Code, Gemini CLI, Cursor, VS Code Copilot, and more.
# Jetty — AI/ML Workflows for Any Agent
Build, run, and monitor AI/ML workflows on [Jetty](https://jetty.io) from any AI coding tool. Works with Claude Code, Cursor, VS Code Cursor, Windsurf, Zed, Cursor CLI, Codex CLI, and any MCP-compatible agent.
## Quick Start (Claude Code)
```bash
cursor plugin marketplace add jettyio/jettyio-skills
cursor plugin install jetty@jetty
```
Then run `/jetty-setup` to create an account, configure your API key, and run your first workflow in under 5 minutes.
## Install in Your Tool
Jetty uses the [Model Context Protocol](https://modelcontextprotocol.io) (MCP) to connect to your agent. Pick your tool below.
### Claude Code
**Plugin (recommended)** — includes guided setup wizard, workflow skills, and MCP tools:
```bash
cursor plugin marketplace add jettyio/jettyio-skills
cursor plugin install jetty@jetty
```
Then run `/jetty-setup` to get started interactively.
**MCP server only:**
```bash
Claude MCP add jetty -- npx -y jetty-mcp-server
```
Or add to your project's `.mcp.json`:
```json
{
"mcpServers": {
"jetty": {
"command": "npx",
"args": ["-y", "jetty-mcp-server"],
"env": { "JETTY_API_TOKEN": "mlc_your_token" }
}
}
}
```
### Cursor
Add to `.cursor/mcp.json` in your project root:
```json
{
"mcpServers": {
"jetty": {
"command": "npx",
"args": ["-y", "jetty-mcp-server"],
"env": { "JETTY_API_TOKEN": "mlc_your_token" }
}
}
}
```
### VS Code Cursor
Add to `.vscode/mcp.json` in your project root:
```json
{
"servers": {
"jetty": {
"command": "npx",
"args": ["-y", "jetty-mcp-server"],
"env": { "JETTY_API_TOKEN": "mlc_your_token" }
}
}
}
```
Or run `MCP: Add Server` from the Command Palette.
### Windsurf
Add to `~/.codeium/windsurf/mcp_config.json`:
```json
{
"mcpServers": {
"jetty": {
"command": "npx",
"args": ["-y", "jetty-mcp-server"],
"env": { "JETTY_API_TOKEN": "mlc_your_token" }
}
}
}
```
### Agent that generates comprehensive documentation, API references, architecture diagrams, and developer onboarding guides from existing code.
Agent configuration for systematic bug investigation that traces issues from error logs through the codebase to root cause with suggested fixes.
Agent for integrating third-party APIs including SDK setup, type generation, error handling, retry logic, and rate limit management.
Cursor's built-in autonomous coding agent that can make multi-file edits, run terminal commands, search the codebase, and iteratively build features with minimal human intervention.
Cloud-based autonomous coding agent that runs in the background on remote sandboxed environments, handling complex multi-step tasks while you continue working.
Cursor's multi-file editing agent within Composer mode that can create, edit, and delete files across your entire project in a single conversation.