felt-automation
Automate Felt tasks via Rube MCP (Composio). Always search tools first for current schemas.
Author
Category
Development ToolsInstall
Hot:17
Download and extract to your skills directory
Copy command and send to OpenClaw for auto-install:
Download and install this skill https://openskills.cc/api/download?slug=composiohq-composio-skills-felt-automation&locale=en&source=copy
Felt Automation - Automate Felt Map Operations via Rube MCP
Skill Overview
The Felt Automation capability automates Felt map workflows using Composio’s Felt toolkit and Rube MCP. It enables batch processing of map tasks without writing code.
Use Cases
When you need to create or update multiple Felt maps at once, automation lets you complete the work in a single run instead of performing it manually one by one.
When map data needs regular updates (e.g., daily sales data, real-time sensor data), set up an automated workflow to sync changes to Felt maps automatically.
In multi-user collaboration scenarios, automatically assign map permissions for new members, create shared layers, or update map status based on project progress.
Core Features
Use
RUBE_SEARCH_TOOLS to query available Felt tools and the current architecture in real time, avoiding outdated tool definitions from hard-coding.Use
RUBE_MANAGE_CONNECTIONS to manage the Felt connection status. It supports OAuth authentication and connection status checks to ensure the connection is healthy before workflow execution.Use
RUBE_MULTI_EXECUTE_TOOL to run multiple Felt operations within a single session, supporting session reuse and stored memory.Common Questions
How do I connect Felt to Rube MCP?
In your MCP client configuration, add
https://rube.app/mcp as the server address—no API key is required. After connecting, call RUBE_MANAGE_CONNECTIONS and specify the toolkit as felt. Complete the OAuth authorization using the returned link.Does Felt Automation require an API key?
No. Rube MCP uses OAuth-based connections. Just follow the connection flow to authorize your Felt account—no separate API key is needed or configured.
Why do I need to search for tools before each execution?
Felt’s tool architecture updates periodically. Hard-coding tool definitions may cause calls to fail.
RUBE_SEARCH_TOOLS returns the current available tool list, input schema, and a recommended execution plan, ensuring your workflow remains compatible with the latest API.What Felt operations does Rube MCP support?
The specific supported operations depend on the current version of the Felt toolkit. It’s recommended to first call
RUBE_SEARCH_TOOLS to retrieve the full list of available tools. Common ones include map creation, layer management, and data import.How can I tell if the Felt connection is working properly?
Call
RUBE_MANAGE_CONNECTIONS to check the connection status. In the returned results, a status of ACTIVE means the connection is healthy; other statuses require re-authorization.