Cursor SDK Public Beta: Opening Agent Runtime to Developers, Notion and Rippling Already Using It

Cursor SDK Public Beta: Opening Agent Runtime to Developers, Notion and Rippling Already Using It

Conclusion

Cursor officially launched the public beta of its Agent SDK in TypeScript today (April 29). This means anyone can use the same runtime, harness, and models that power the Cursor editor to build autonomous coding agents outside the editor.

Companies like Notion, Rippling, C3 AI, and Faire are already integrating it for use cases ranging from fully automated bug fixes from ticket to merge-ready PR, self-maintaining codebases, and background agents.

What Happened

Cursor released an npm package @cursor/sdk that developers can install to invoke Cursor’s Agent capabilities in their own projects. Agents can run locally or be deployed to Cursor’s cloud-based isolated virtual machines. In cloud mode, each agent has its own sandboxed environment.

Core capabilities provided by the SDK include:

  • Harness layer: Handles tool calls, file read/write, terminal execution, GitHub integration, etc.
  • Sandbox isolation: Cloud agents run in isolated VMs for security and reproducibility
  • Computer Use: Agents can operate screens and GUIs, not just code editing
  • Demo recording: Automatically records agent operations for review and debugging
  • Multi-model support: Can be configured to use different underlying models

Why It Matters

Previously, Cursor’s Agent capabilities were only available within its editor. With the SDK, these capabilities have transformed from an “editor feature” into “programmable infrastructure.”

This has several practical implications:

  1. Coding agents in CI/CD pipelines: Agents can automatically fix lint errors, update dependencies, and complete tests after PR merges
  2. Embedded coding capabilities in products: SaaS products can integrate Cursor’s agent runtime to provide AI coding features to users
  3. Custom toolchains: Developers can customize agent behavior with their own rules, prompts, and tool sets

How to Use

npm install @cursor/sdk

Cursor also open-sourced three starter projects:

  • Coding Agent CLI: Command-line coding agent for quick integration
  • Prototyping Tool: Rapid prototyping for validating ideas
  • Agent-powered Kanban: Kanban system powered by agents that can automatically handle task cards

Developers can find these templates on GitHub and customize them directly using the Cursor editor.

Limitations and Observations

  • The SDK is currently in public beta, and the API may change
  • Pricing and usage limits for cloud agents have not been fully disclosed
  • Actual effectiveness and stability need more community validation
  • Local deployment requires developers to manage models and compute resources themselves

Sources

  • Cursor official announcement (2026-04-29)
  • Cursor official X account @cursor_ai
  • Community developer feedback