npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

retool-mcp

v1.0.0

Published

MCP server for Retool - create and manage apps, workflows, and resources via Claude Code

Downloads

119

Readme

Retool MCP Server

npm version

An MCP (Model Context Protocol) server for interacting with self-hosted Retool instances. This allows AI assistants like Claude to create apps, manage workflows, users, and resources in Retool.

Features

  • Apps Management: Create, list, delete apps and create releases
  • Folders: Organize apps into folders
  • Workflows: List and trigger Retool workflows
  • Resources: View database connections, APIs, and other resources
  • Users: Create, list, and manage users
  • Groups: Manage permission groups
  • Audit Logs: Access organization audit logs

Quick Start

Using npx (Recommended)

No installation required:

RETOOL_URL=https://your-retool.com RETOOL_API_KEY=your-key npx retool-mcp

Global Installation

npm install -g retool-mcp
retool-mcp

Configuration

Set the following environment variables:

| Variable | Description | Required | |----------|-------------|----------| | RETOOL_URL | Your Retool instance URL | Yes | | RETOOL_API_KEY | Retool API token | Yes |

Getting an API Key

  1. Go to your Retool instance
  2. Navigate to Settings > API
  3. Create a new API token with appropriate permissions

Usage with Claude Code

Add to your Claude Code MCP settings:

Option 1: Using npx (no install needed)

{
  "mcpServers": {
    "retool": {
      "command": "npx",
      "args": ["-y", "retool-mcp"],
      "env": {
        "RETOOL_URL": "https://your-retool-instance.com",
        "RETOOL_API_KEY": "your-api-key"
      }
    }
  }
}

Option 2: Using global install

{
  "mcpServers": {
    "retool": {
      "command": "retool-mcp",
      "env": {
        "RETOOL_URL": "https://your-retool-instance.com",
        "RETOOL_API_KEY": "your-api-key"
      }
    }
  }
}

Available Tools

Apps

| Tool | Description | |------|-------------| | retool_list_apps | List all apps | | retool_get_app | Get app details | | retool_create_app | Create a new app | | retool_delete_app | Delete an app | | retool_create_app_release | Create app release/version |

Folders

| Tool | Description | |------|-------------| | retool_list_folders | List all folders | | retool_create_folder | Create a folder |

Workflows

| Tool | Description | |------|-------------| | retool_list_workflows | List all workflows | | retool_trigger_workflow | Trigger a workflow with optional data |

Resources

| Tool | Description | |------|-------------| | retool_list_resources | List all resources (DBs, APIs, etc.) | | retool_get_resource | Get resource details |

Users

| Tool | Description | |------|-------------| | retool_list_users | List all users | | retool_get_user | Get user details | | retool_create_user | Create/invite user | | retool_deactivate_user | Deactivate a user |

Groups

| Tool | Description | |------|-------------| | retool_list_groups | List all groups | | retool_get_group | Get group details | | retool_add_user_to_group | Add user to group |

Audit

| Tool | Description | |------|-------------| | retool_get_audit_logs | Get audit logs |

Example Usage

Once configured, you can ask Claude:

  • "List all Retool apps"
  • "Create a new app called 'Customer Dashboard'"
  • "Trigger the 'daily-report' workflow"
  • "Add user [email protected] to the Admin group"

Development

# Clone the repo
git clone https://github.com/TechnicalRhino/retool-mcp.git
cd retool-mcp

# Install dependencies
npm install

# Run in development mode
npm run dev

# Build
npm run build

Contributing

Contributions are welcome! Please open an issue or submit a PR.

License

MIT