Skip to main content
Glama
StormXX
by StormXX

Rive Docs MCP - Rive Documentation Model Context Protocol Server

License: MIT

Rive Documentation MCP Server - Access Rive's animation documentation, runtime guides, editor features, and tutorials through Model Context Protocol. Search animations, state machines, runtime implementations, and editor capabilities across web, mobile, and game platforms. Get instant access to React, Flutter, Unity integration guides, and complete API references directly in Claude, Cursor, or any MCP-compatible AI assistant.

โœจ Features

  • ๐Ÿ” Smart Search: Intelligent search across Rive documentation for animations, runtimes, editor features, and guides

  • ๐Ÿ“š Complete Documentation Access: Full access to Rive's documentation for all runtime platforms

  • ๐ŸŽฎ Multi-Platform Support: Web, React, Flutter, iOS, Android, Unity, Unreal Engine, and more

  • ๐ŸŽจ Editor Features: Browse animation tools, constraints, state machines, bones, and timeline features

  • ๐Ÿ“‹ Runtime Guides: Comprehensive implementation guides for all supported platforms

  • ๐ŸŽฏ Tutorial Access: Find and access tutorials by topic, difficulty, or runtime platform

  • ๐Ÿ”ง API References: Complete API documentation for runtime-specific implementations

  • โšก High Performance: Optimized with caching and concurrent request handling

  • ๐ŸŒ Feature Support Matrix: Check feature compatibility across different runtime platforms

  • ๐Ÿš€ Developer Friendly: Built for AI-powered development workflows

Related MCP server: DevDocs MCP

๐Ÿš€ Quick Start

Add this to your Claude Desktop configuration:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\\Claude\\claude_desktop_config.json

{
  "mcpServers": {
    "rive-docs": {
      "command": "node",
      "args": ["path/to/rive-docs-mcp/dist/index.js"]
    }
  }
}

Local Development

  1. Clone and build the project:

git clone <repository-url>
cd rive-docs-mcp
npm install
npm run build
  1. Test the server:

npm start

๐Ÿ“ฆ Installation

Claude Code

# Add as MCP server
claude mcp add rive-docs -- node path/to/rive-docs-mcp/dist/index.js

Cursor

Add to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "rive-docs": {
      "command": "node",
      "args": ["path/to/rive-docs-mcp/dist/index.js"]
    }
  }
}

Other MCP Clients

The server works with any MCP-compatible client. Use the command:

node path/to/rive-docs-mcp/dist/index.js

๐Ÿ› ๏ธ Available Tools

๐Ÿ” search_rive_docs

Search Rive documentation across all categories.

Parameters:

  • query (required): Search terms (e.g., "React runtime", "state machine events")

  • category: Filter by category (all, runtimes, editor, game-runtimes, tutorials)

  • runtime: Filter by specific runtime platform

  • limit: Max results (default: 10, max: 50)

Example:

search_rive_docs query="React animation setup" category="runtimes" limit=5

๐Ÿ“– get_rive_doc_content

Get detailed content from a specific Rive documentation page.

Parameters:

  • url (required): Full Rive documentation URL

  • includeCode: Include code examples (default: true)

  • includeLinks: Include related links (default: false)

  • maxLength: Max content length (default: 10000)

Example:

get_rive_doc_content url="https://rive.app/docs/runtimes/react/getting-started"

๐Ÿƒ list_runtimes

List all available Rive runtime platforms.

Parameters:

  • platform: Filter by platform type (all, web, mobile, game)

  • status: Filter by status (all, stable, beta, community)

  • includeDetails: Include detailed information (default: true)

๐Ÿ“‹ get_runtime_guide

Get comprehensive implementation guide for a specific runtime.

Parameters:

  • runtime (required): Runtime platform (web, react, flutter, unity, etc.)

  • section: Specific section (getting-started, setup, api-reference)

  • includeExamples: Include code examples (default: true)

๐ŸŽจ list_editor_features

Browse Rive editor features and capabilities.

Parameters:

  • category: Feature category (all, animation, constraints, state-machines)

  • includeDetails: Include detailed descriptions (default: true)

๐ŸŽ“ get_tutorials

Find tutorials by topic, difficulty, or runtime.

Parameters:

  • topic: Tutorial topic or search term

  • difficulty: Filter by difficulty (all, beginner, intermediate, advanced)

  • runtime: Filter by runtime platform

  • limit: Max tutorials to return (default: 10)

โœ… check_feature_support

Check feature support across runtime platforms.

Parameters:

  • feature (required): Feature to check (e.g., "state machines", "bones")

  • runtime: Specific runtime to check (optional)

๐Ÿ“š get_api_reference

Get API reference for a specific runtime.

Parameters:

  • runtime (required): Runtime platform

  • className: Specific class/component name (optional)

  • includeExamples: Include usage examples (default: true)

๐Ÿ’ก Usage Examples

Search for React Integration

search_rive_docs query="React component setup" category="runtimes" runtime="react"

Get Flutter Getting Started Guide

get_runtime_guide runtime="flutter" section="getting-started"

Find State Machine Tutorials

get_tutorials topic="state machine" difficulty="beginner"

Check Unity Feature Support

check_feature_support feature="timeline events" runtime="unity"

Browse Animation Features

list_editor_features category="animation"

๐ŸŽฏ Supported Runtimes

App Runtimes

  • Web (JavaScript) - Browser-based animations

  • React - React component integration

  • React Native - Mobile React applications

  • Flutter - Cross-platform mobile apps

  • iOS - Native iOS applications (Swift)

  • Android - Native Android applications (Kotlin/Java)

Game Runtimes

  • Unity - Unity game engine (C#)

  • Unreal Engine - Unreal Engine (C++)

  • Defold - Defold game engine (Lua)

Community Runtimes

  • C# - .NET applications

  • Qt/QtQuick - Qt applications

๐Ÿ”ง Development

Build Commands

# Install dependencies
npm install

# Build TypeScript
npm run build

# Development mode (watch)
npm run dev

# Run tests
npm test

# Lint code
npm run lint

# Clean build
npm run clean

Project Structure

src/
โ”œโ”€โ”€ index.ts              # Main MCP server
โ”œโ”€โ”€ tools/                # Tool implementations
โ”‚   โ”œโ”€โ”€ definitions.ts    # Tool definitions
โ”‚   โ”œโ”€โ”€ handlers.ts       # Tool handlers
โ”‚   โ”œโ”€โ”€ search.ts         # Search functionality
โ”‚   โ””โ”€โ”€ doc-fetcher.ts    # Document fetching
โ”œโ”€โ”€ utils/                # Utilities
โ”‚   โ”œโ”€โ”€ constants.ts      # Configuration constants
โ”‚   โ”œโ”€โ”€ http-client.ts    # HTTP client
โ”‚   โ”œโ”€โ”€ cache.ts          # Caching system
โ”‚   โ”œโ”€โ”€ logger.ts         # Logging utility
โ”‚   โ”œโ”€โ”€ error-handler.ts  # Error handling
โ”‚   โ”œโ”€โ”€ content-extractor.ts  # Content extraction
โ”‚   โ””โ”€โ”€ navigation-crawler.ts # Navigation discovery
โ””โ”€โ”€ types/                # TypeScript types
    โ””โ”€โ”€ index.ts          # Type definitions

๐Ÿ“ˆ Performance

  • Caching: TTL-based caching for documentation content, search results, and navigation

  • Rate Limiting: Built-in rate limiting to respect Rive's servers

  • Concurrent Requests: Limited concurrent requests for optimal performance

  • Error Handling: Comprehensive error handling with retry logic

  • Memory Management: Efficient memory usage with cache size limits

๐Ÿค Contributing

  1. Fork the repository

  2. Create a feature branch (git checkout -b feature/amazing-feature)

  3. Commit your changes (git commit -m 'Add amazing feature')

  4. Push to the branch (git push origin feature/amazing-feature)

  5. Open a Pull Request

๐Ÿ“„ License

This project is licensed under the MIT License - see the LICENSE file for details.

๐Ÿ™ Acknowledgments

  • Rive for creating an amazing animation platform

  • Anthropic for the Model Context Protocol

  • The Rive community for excellent documentation and resources


Made with โค๏ธ for the Rive animation community

A
license - permissive license
-
quality - not tested
D
maintenance

Maintenance

โ€“Maintainers
โ€“Response time
โ€“Release cycle
โ€“Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

View all related MCP servers

Related MCP Connectors

  • Get up-to-date, version-specific documentation and code examples from official sources directly inโ€ฆ

  • A Model Context Protocol server for Wix AI tools

  • Search @imqueue docs and scaffold typed services & clients from your AI coding agent.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/StormXX/rive-docs-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server