freshcrate
Skin:/
Home > MCP Servers > rocketride-server

rocketride-server

High-performance AI pipeline engine with a C++ core and 50+ Python-extensible nodes. Build, debug, and scale LLM workflows with 13+ model providers, 8+ vector databases, and agent orchestration, all f

Why this rank:Strong adoptionRecent releaseHealthy release cadence

Description

High-performance AI pipeline engine with a C++ core and 50+ Python-extensible nodes. Build, debug, and scale LLM workflows with 13+ model providers, 8+ vector databases, and agent orchestration, all from your IDE. Includes VS Code extension, TypeScript/Python SDKs, and Docker deployment.

README

RocketRide

Open-source, developer-native AI pipeline tool.
Build, debug, and deploy production AI workflows - without leaving your IDE.

C++ย ย  Pythonย ย  TypeScript

RocketRide is an open-source data pipeline builder and runtime built for AI and ML workloads. With 50+ pipeline nodes spanning 13 LLM providers, 8 vector databases, OCR, NER, and more โ€” pipelines are defined as portable JSON, built visually in VS Code, and executed by a multithreaded C++ runtime. From real-time data processing to multimodal AI search, RocketRide runs entirely on your own infrastructure.

Home | Documentation | Python SDK | TypeScript SDK | MCP Server

CI Engine v3.1.0 Discord MIT License

Build and run AI pipelines inside your IDE

Design, test, and ship complex AI workflows from a visual canvas, right where you write code.

Integrate real AI solutions using a simple SDK

Drop pipelines into any Python or TypeScript app with a few lines of code, no infrastructure glue required.

Features

Feature Description
Visual Pipeline Builder Drag, connect, and configure nodes in VS Code โ€” no boilerplate. Real-time observability tracks token usage, LLM calls, latency, and execution. Pipelines are portable JSON โ€” version-controllable, shareable, and runnable anywhere.
High-Performance C++ Runtime Native multithreading purpose-built for the throughput demands of AI and data workloads. No bottlenecks, no compromises for production scale.
50+ Pipeline Nodes 13 LLM providers, 8 vector databases, OCR, NER, PII anonymization, chunking strategies, embedding models, and more. All nodes are Python-extensible โ€” build and publish your own.
Multi-Agent Workflows Built-in CrewAI and LangChain support. Chain agents, share memory across pipeline runs, and manage multi-step reasoning at scale.
Coding Agent Ready RocketRide auto-detects your coding agent โ€” Claude, Cursor, and more. Build, modify, and deploy pipelines through natural language.
TypeScript, Python & MCP SDKs Integrate pipelines into native apps, expose them as callable tools for AI assistants, or build programmatic workflows into your existing codebase.
Zero Dependency Headaches Python environments, C++ toolchains, Java/Tika, and all node dependencies managed automatically. Clone, build, run โ€” no manual setup.
One-Click Deploy Run on Docker, on-prem, or RocketRide Cloud (coming soon). Production-ready architecture from day one โ€” not retrofitted from a demo.

Quick Start

  1. Install the extension for your IDE. Search for RocketRide in the extension marketplace:

    Install RocketRide extension

    Not seeing your IDE? Open an issue ยท Download directly

  2. Click the RocketRide extension in your IDE

  3. Deploy a server - you'll be prompted on how you want to run the server. Choose the option that fits your setup:

    • Local (Recommended) - This pulls the server directly into your IDE without any additional setup.
    • On-Premises - Run the server on your own hardware for full control and data residency. Pull the image and deploy to Docker or clone this repo and build from source.

Building Your First Pipe

  1. All pipelines are recognized with the *.pipe format. Each pipeline and configuration is a JSON object - but the extension in your IDE will render within our visual builder canvas.

  2. All pipelines begin with source node: webhook, chat, or dropper. For specific usage, examples, and inspiration on how to build pipelines, check out our guides and documentation.

  3. Connect input lanes and output lanes by type to properly wire your pipeline. Some nodes like agents or LLMs can be invoked as tools for use by a parent node as shown below:

Pipeline canvas example

  1. You can run a pipeline from the canvas by pressing the โ–ถ button on the source node or from the Connection Manager directly.

  2. Deploy your pipelines on your own infrastructure.

    • Docker - Download the RocketRide server image and create a container. Requires Docker to be installed.

      docker pull ghcr.io/rocketride-org/rocketride-engine:latest
      docker create --name rocketride-engine -p 5565:5565 ghcr.io/rocketride-org/rocketride-engine:latest
    • Local deployment - Download the runtime of your choice as a standalone process in the 'Deploy' page of the Connection Manager

  3. Run your pipelines as standalone processes or integrate them into your existing Python and TypeScript/JS applications utilizing our SDK.

Observability

Selecting running pipelines allows for in-depth analytics. Trace call trees, token usage, memory consumption, and more to optimize your pipelines before scaling and deploying. Find the models, agents, and tools best fit for your task.

Pipeline observability and tracing

Contributors

RocketRide is built by a growing community of contributors. Whether you've fixed a bug, added a node, improved docs, or helped someone on Discord, thank you. New contributions are always welcome - check out our contributing guide to get started.

contributors

Made with โ™ฅ in SF & EU

Release History

VersionChangesUrgencyDate
vscode-v1.2.0## What's Changed * release: stage โ†’ main (2026-06-04) by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/1127 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.1.1...vscode-v1.2.0High6/5/2026
vscode-v1.1.1## What's Changed * release: stage โ†’ main (dot release 2026-05-27) by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/1014 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-typescript-v1.1.0...vscode-v1.1.1High5/29/2026
client-typescript-v1.1.0## What's Changed * ci(release): switch TS client npm publish to OIDC trusted publishing by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/976 * ci(release): drop registry-url to unblock OIDC npm publish by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/977 * ci(release): add diagnostic logging to TS publish to debug OIDC by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/978 **Full Changelog**: https://github.com/rocketride-org/rocHigh5/23/2026
server-v3.1.2-prereleaseAutomated nightly prerelease from `develop`. **Server** v3.1.2High4/21/2026
client-mcp-v1.0.7-prereleaseAutomated nightly prerelease from `develop`. **MCP Client** v1.0.7High4/21/2026
client-typescript-v1.0.6-prereleaseAutomated nightly prerelease from `develop`. **TypeScript Client** v1.0.6High4/21/2026
vscode-v1.0.6-prereleaseAutomated nightly prerelease from `develop`. **VS Code Extension** v1.0.6High4/21/2026
client-python-v1.0.6-prereleaseAutomated nightly prerelease from `develop`. **Python Client** v1.0.6High4/21/2026
client-mcp-v1.0.7## What's Changed * chore: bump rocketride-mcp to 1.0.7 for PyPI banner by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/476 * chore: release MCP 1.0.7 banner fix by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/477 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.0.6...client-mcp-v1.0.7Medium3/30/2026
client-mcp-v1.0.7## What's Changed * chore: bump rocketride-mcp to 1.0.7 for PyPI banner by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/476 * chore: release MCP 1.0.7 banner fix by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/477 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.0.6...client-mcp-v1.0.7Medium3/30/2026
client-mcp-v1.0.7## What's Changed * chore: bump rocketride-mcp to 1.0.7 for PyPI banner by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/476 * chore: release MCP 1.0.7 banner fix by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/477 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.0.6...client-mcp-v1.0.7Medium3/30/2026
client-mcp-v1.0.7## What's Changed * chore: bump rocketride-mcp to 1.0.7 for PyPI banner by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/476 * chore: release MCP 1.0.7 banner fix by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/477 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.0.6...client-mcp-v1.0.7Medium3/30/2026
client-mcp-v1.0.7## What's Changed * chore: bump rocketride-mcp to 1.0.7 for PyPI banner by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/476 * chore: release MCP 1.0.7 banner fix by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/477 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.0.6...client-mcp-v1.0.7Medium3/30/2026
client-mcp-v1.0.7## What's Changed * chore: bump rocketride-mcp to 1.0.7 for PyPI banner by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/476 * chore: release MCP 1.0.7 banner fix by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/477 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.0.6...client-mcp-v1.0.7Medium3/30/2026
client-mcp-v1.0.7## What's Changed * chore: bump rocketride-mcp to 1.0.7 for PyPI banner by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/476 * chore: release MCP 1.0.7 banner fix by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/477 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.0.6...client-mcp-v1.0.7Medium3/30/2026
client-mcp-v1.0.7## What's Changed * chore: bump rocketride-mcp to 1.0.7 for PyPI banner by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/476 * chore: release MCP 1.0.7 banner fix by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/477 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.0.6...client-mcp-v1.0.7Medium3/30/2026
client-mcp-v1.0.7## What's Changed * chore: bump rocketride-mcp to 1.0.7 for PyPI banner by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/476 * chore: release MCP 1.0.7 banner fix by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/477 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.0.6...client-mcp-v1.0.7Low3/30/2026
client-mcp-v1.0.7## What's Changed * chore: bump rocketride-mcp to 1.0.7 for PyPI banner by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/476 * chore: release MCP 1.0.7 banner fix by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/477 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.0.6...client-mcp-v1.0.7Low3/30/2026
client-mcp-v1.0.7## What's Changed * chore: bump rocketride-mcp to 1.0.7 for PyPI banner by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/476 * chore: release MCP 1.0.7 banner fix by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/477 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.0.6...client-mcp-v1.0.7Low3/30/2026
client-mcp-v1.0.7## What's Changed * chore: bump rocketride-mcp to 1.0.7 for PyPI banner by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/476 * chore: release MCP 1.0.7 banner fix by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/477 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.0.6...client-mcp-v1.0.7Low3/30/2026
client-mcp-v1.0.7## What's Changed * chore: bump rocketride-mcp to 1.0.7 for PyPI banner by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/476 * chore: release MCP 1.0.7 banner fix by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/477 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.0.6...client-mcp-v1.0.7Low3/30/2026
client-mcp-v1.0.7## What's Changed * chore: bump rocketride-mcp to 1.0.7 for PyPI banner by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/476 * chore: release MCP 1.0.7 banner fix by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/477 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.0.6...client-mcp-v1.0.7Low3/30/2026
client-mcp-v1.0.7## What's Changed * chore: bump rocketride-mcp to 1.0.7 for PyPI banner by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/476 * chore: release MCP 1.0.7 banner fix by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/477 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.0.6...client-mcp-v1.0.7Low3/30/2026
client-mcp-v1.0.7## What's Changed * chore: bump rocketride-mcp to 1.0.7 for PyPI banner by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/476 * chore: release MCP 1.0.7 banner fix by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/477 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.0.6...client-mcp-v1.0.7Low3/30/2026
client-mcp-v1.0.7## What's Changed * chore: bump rocketride-mcp to 1.0.7 for PyPI banner by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/476 * chore: release MCP 1.0.7 banner fix by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/477 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.0.6...client-mcp-v1.0.7Low3/30/2026
client-mcp-v1.0.7## What's Changed * chore: bump rocketride-mcp to 1.0.7 for PyPI banner by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/476 * chore: release MCP 1.0.7 banner fix by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/477 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.0.6...client-mcp-v1.0.7Low3/30/2026
client-mcp-v1.0.7## What's Changed * chore: bump rocketride-mcp to 1.0.7 for PyPI banner by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/476 * chore: release MCP 1.0.7 banner fix by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/477 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.0.6...client-mcp-v1.0.7Low3/30/2026
client-mcp-v1.0.7## What's Changed * chore: bump rocketride-mcp to 1.0.7 for PyPI banner by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/476 * chore: release MCP 1.0.7 banner fix by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/477 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.0.6...client-mcp-v1.0.7Low3/30/2026
client-mcp-v1.0.7## What's Changed * chore: bump rocketride-mcp to 1.0.7 for PyPI banner by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/476 * chore: release MCP 1.0.7 banner fix by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/477 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.0.6...client-mcp-v1.0.7Low3/30/2026
client-mcp-v1.0.7## What's Changed * chore: bump rocketride-mcp to 1.0.7 for PyPI banner by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/476 * chore: release MCP 1.0.7 banner fix by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/477 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.0.6...client-mcp-v1.0.7Low3/30/2026
client-mcp-v1.0.7## What's Changed * chore: bump rocketride-mcp to 1.0.7 for PyPI banner by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/476 * chore: release MCP 1.0.7 banner fix by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/477 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.0.6...client-mcp-v1.0.7Low3/30/2026
client-mcp-v1.0.7## What's Changed * chore: bump rocketride-mcp to 1.0.7 for PyPI banner by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/476 * chore: release MCP 1.0.7 banner fix by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/477 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.0.6...client-mcp-v1.0.7Low3/30/2026
client-mcp-v1.0.7## What's Changed * chore: bump rocketride-mcp to 1.0.7 for PyPI banner by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/476 * chore: release MCP 1.0.7 banner fix by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/477 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.0.6...client-mcp-v1.0.7Low3/30/2026
client-mcp-v1.0.7## What's Changed * chore: bump rocketride-mcp to 1.0.7 for PyPI banner by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/476 * chore: release MCP 1.0.7 banner fix by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/477 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.0.6...client-mcp-v1.0.7Low3/30/2026
client-mcp-v1.0.7## What's Changed * chore: bump rocketride-mcp to 1.0.7 for PyPI banner by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/476 * chore: release MCP 1.0.7 banner fix by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/477 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.0.6...client-mcp-v1.0.7Low3/30/2026
client-mcp-v1.0.7## What's Changed * chore: bump rocketride-mcp to 1.0.7 for PyPI banner by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/476 * chore: release MCP 1.0.7 banner fix by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/477 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.0.6...client-mcp-v1.0.7Low3/30/2026
client-mcp-v1.0.7## What's Changed * chore: bump rocketride-mcp to 1.0.7 for PyPI banner by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/476 * chore: release MCP 1.0.7 banner fix by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/477 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.0.6...client-mcp-v1.0.7Low3/30/2026
client-mcp-v1.0.7## What's Changed * chore: bump rocketride-mcp to 1.0.7 for PyPI banner by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/476 * chore: release MCP 1.0.7 banner fix by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/477 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.0.6...client-mcp-v1.0.7Low3/30/2026
client-mcp-v1.0.7## What's Changed * chore: bump rocketride-mcp to 1.0.7 for PyPI banner by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/476 * chore: release MCP 1.0.7 banner fix by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/477 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.0.6...client-mcp-v1.0.7Low3/30/2026
client-mcp-v1.0.7## What's Changed * chore: bump rocketride-mcp to 1.0.7 for PyPI banner by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/476 * chore: release MCP 1.0.7 banner fix by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/477 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.0.6...client-mcp-v1.0.7Low3/30/2026
client-python-v1.0.6## What's Changed * fix: convert all banner SVGs to PNG + absolute URLs for npm/PyPI/marketplace by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/472 * chore: merge develop into main for banner fix release by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/473 * chore(versions): bump to 1.0.6 for banner fix release by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/474 * chore: release 1.0.6 โ€” banner fix by @kwit75 in https://github.cMedium3/30/2026
client-mcp-v1.0.6## What's Changed * fix: convert all banner SVGs to PNG + absolute URLs for npm/PyPI/marketplace by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/472 * chore: merge develop into main for banner fix release by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/473 * chore(versions): bump to 1.0.6 for banner fix release by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/474 * chore: release 1.0.6 โ€” banner fix by @kwit75 in https://github.cMedium3/30/2026
client-typescript-v1.0.6## What's Changed * fix: convert all banner SVGs to PNG + absolute URLs for npm/PyPI/marketplace by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/472 * chore: merge develop into main for banner fix release by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/473 * chore(versions): bump to 1.0.6 for banner fix release by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/474 * chore: release 1.0.6 โ€” banner fix by @kwit75 in https://github.cMedium3/30/2026
server-v3.1.2## What's Changed * feat(node): Add documents lane to frame grabber and vision nodes by @ryan-t-christensen in https://github.com/rocketride-org/rocketride-server/pull/459 * feat(trace): interactive JSON tree viewer in trace detail panel by @Rod-Christensen in https://github.com/rocketride-org/rocketride-server/pull/466 * chore(versions): bump patch versions for release by @Rod-Christensen in https://github.com/rocketride-org/rocketride-server/pull/467 * docs: redesign root README and standardizMedium3/29/2026
client-python-v1.0.5## What's Changed * feat(node): Add documents lane to frame grabber and vision nodes by @ryan-t-christensen in https://github.com/rocketride-org/rocketride-server/pull/459 * feat(trace): interactive JSON tree viewer in trace detail panel by @Rod-Christensen in https://github.com/rocketride-org/rocketride-server/pull/466 * chore(versions): bump patch versions for release by @Rod-Christensen in https://github.com/rocketride-org/rocketride-server/pull/467 * docs: redesign root README and standardizMedium3/29/2026
client-typescript-v1.0.5## What's Changed * feat(node): Add documents lane to frame grabber and vision nodes by @ryan-t-christensen in https://github.com/rocketride-org/rocketride-server/pull/459 * feat(trace): interactive JSON tree viewer in trace detail panel by @Rod-Christensen in https://github.com/rocketride-org/rocketride-server/pull/466 * chore(versions): bump patch versions for release by @Rod-Christensen in https://github.com/rocketride-org/rocketride-server/pull/467 * docs: redesign root README and standardizMedium3/29/2026
vscode-v1.0.5## What's Changed * fix(vscode): complete README packaging fix (from #323) by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/324 * fix(vscode): add missing glob dependency for vsix packaging by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/330 * fix(vscode): use @vscode/vsce for vsix packaging by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/449 * fix(ci): remove main from scorecard push trigger by @kwit75 in https://github.com/rocMedium3/27/2026
vscode-v1.0.3## What's Changed * fix(vscode): include README.md in vsix package by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/322 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.0.4...vscode-v1.0.3Low3/22/2026
vscode-v1.0.2## What's Changed * chore: bump package versions for hackathon release by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/318 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.0.3...vscode-v1.0.2Low3/21/2026
client-mcp-v1.0.4## What's Changed * chore: bump package versions for hackathon release by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/318 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.0.3...client-mcp-v1.0.4Low3/21/2026
client-python-v1.0.4## What's Changed * chore: bump package versions for hackathon release by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/318 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.0.3...client-python-v1.0.4Low3/21/2026
client-typescript-v1.0.4## What's Changed * chore: bump package versions for hackathon release by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/318 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.0.3...client-typescript-v1.0.4Low3/21/2026
vscode-v1.0.1## What's Changed * docs: cherry-pick README updates for hackathon by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/303 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-typescript-v1.0.2...vscode-v1.0.1Low3/21/2026
client-mcp-v1.0.3## What's Changed * docs: cherry-pick README updates for hackathon by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/303 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-typescript-v1.0.2...client-mcp-v1.0.3Low3/21/2026
client-typescript-v1.0.3## What's Changed * docs: cherry-pick README updates for hackathon by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/303 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-typescript-v1.0.2...client-typescript-v1.0.3Low3/21/2026
client-python-v1.0.3## What's Changed * docs: cherry-pick README updates for hackathon by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/303 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-typescript-v1.0.2...client-python-v1.0.3Low3/21/2026
client-typescript-v1.0.2## What's Changed * fix(ci): npm trusted publishers and publish path fix by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/198 **Full Changelog**: https://github.com/rocketride-org/rocketride-server/compare/client-mcp-v1.0.2...client-typescript-v1.0.2Low3/5/2026
vscode-v1.0.0## What's Changed * chore(deps-dev): bump rollup from 4.50.2 to 4.59.0 in /packages/shared-ui by @dependabot[bot] in https://github.com/rocketride-org/rocketride-server/pull/41 * fix: add missing fields to issue/PR templates by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/49 * fix(server): use runtime-relative path for static UI files by @ryan-t-christensen in https://github.com/rocketride-org/rocketride-server/pull/51 * fix(ui): Fix notification banner and remove emoji frLow3/5/2026
server-v3.1.0## What's Changed * chore(deps-dev): bump rollup from 4.50.2 to 4.59.0 in /packages/shared-ui by @dependabot[bot] in https://github.com/rocketride-org/rocketride-server/pull/41 * fix: add missing fields to issue/PR templates by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/49 * fix(server): use runtime-relative path for static UI files by @ryan-t-christensen in https://github.com/rocketride-org/rocketride-server/pull/51 * fix(ui): Fix notification banner and remove emoji frLow3/5/2026
client-python-v1.0.2## What's Changed * chore(deps-dev): bump rollup from 4.50.2 to 4.59.0 in /packages/shared-ui by @dependabot[bot] in https://github.com/rocketride-org/rocketride-server/pull/41 * fix: add missing fields to issue/PR templates by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/49 * fix(server): use runtime-relative path for static UI files by @ryan-t-christensen in https://github.com/rocketride-org/rocketride-server/pull/51 * fix(ui): Fix notification banner and remove emoji frLow3/5/2026
client-mcp-v1.0.2## What's Changed * chore(deps-dev): bump rollup from 4.50.2 to 4.59.0 in /packages/shared-ui by @dependabot[bot] in https://github.com/rocketride-org/rocketride-server/pull/41 * fix: add missing fields to issue/PR templates by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/49 * fix(server): use runtime-relative path for static UI files by @ryan-t-christensen in https://github.com/rocketride-org/rocketride-server/pull/51 * fix(ui): Fix notification banner and remove emoji frLow3/5/2026
server-v1.0.3## What's Changed * chore(deps): bump tar from 7.5.7 to 7.5.8 by @dependabot[bot] in https://github.com/rocketride-org/rocketride-server/pull/28 * fix(vscode): preserve .env comments, formatting, and user variables by @Rod-Christensen in https://github.com/rocketride-org/rocketride-server/pull/45 * feat: upgrade issue templates to YAML forms, add PR template by @kwit75 in https://github.com/rocketride-org/rocketride-server/pull/47 * fix(server): add static directory sync to package action by @RoLow2/26/2026
server-v1.0.2## What's Changed * feat(ci): VS Code extension artifact by @stepmikhaylov in https://github.com/rocketride-org/rocketride-server/pull/18 * Fix/docs by @Rod-Christensen in https://github.com/rocketride-org/rocketride-server/pull/16 * feat(ci): upload client artifacts by @stepmikhaylov in https://github.com/rocketride-org/rocketride-server/pull/20 * chore: Prepare Python and TypeScript client packages for publishing by @JoshuaDarron in https://github.com/rocketride-org/rocketride-server/pull/15 *Low2/26/2026

Dependencies & License Audit

Loading dependencies...

Similar Packages

pipulateLocal First AI SEO Software on Nix, FastHTML & HTMXmain@2026-06-06
jarvisYour AI assistant that never forgets and runs 100% privately on your computer. Leave it on 24/7 - it learns your preferences, helps with code, manages your health goals, searches the web, and connectsv1.34.1
aiA productive AI coworker that learns, self-improves, and ships work.main@2026-06-06
mcp-scannerScan MCP servers for potential threats & security findings.4.7.3
discord.py-self-mcpcomprehensive Discord selfbot MCP server using discord.py-selfv1.3.0

More in MCP Servers

AstrBotAgentic IM Chatbot infrastructure that integrates lots of IM platforms, LLMs, plugins and AI feature, and can be your openclaw alternative. โœจ
agentscopeBuild and run agents you can see, understand and trust.
claude-plugins-officialOfficial, Anthropic-managed directory of high quality Claude Code Plugins.
langchain4jLangChain4j is an open-source Java library that simplifies the integration of LLMs into Java applications through a unified API, providing access to popular LLMs and vector databases. It makes impleme