Figranium MCP Server
OfficialThe Figranium MCP Server enables LLM clients (e.g., Claude Desktop, Cursor) to interact with the Figranium automation platform via the Model Context Protocol, allowing AI agents to discover, create, execute, and schedule web automation tasks.
Task Management: Create comprehensive web automation tasks with sequential browser actions (click, type, navigate, etc.), stealth controls, and variable support; list all tasks; execute tasks, optionally overriding variables per run.
Execution Monitoring: Retrieve logs and summaries of past task executions.
Schedule Management: Define, update, delete, and preview cron or frequency-based schedules; check schedule statuses for individual tasks or overall.
Rich Browser Capabilities: Supports modes like scrape, agent, and headful; actions include JavaScript execution, screenshots, HTTP requests, conditional logic, loops, and anti-bot stealth features; extract data in JSON/CSV; manage state via variables.
Client Integration: Easily install via
npxor Docker, with detailed schema validation errors to help LLMs self-correct.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Figranium MCP ServerCreate a Figranium task to scrape Hacker News and execute it."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Figranium MCP Server
A Model Context Protocol (MCP) server for Figranium built using @modelcontextprotocol/sdk. This server allows LLM clients (like Claude Desktop, Cursor, and Manus AI) to discover, execute, inspect, schedule, and programmatically create Figranium automation tasks via standard STDIO transport.
Table of Contents
Related MCP server: n8n-mcp-server
Quick Start (Docker / OCI)
No Node.js runtime or repository clone is required. The official container image is published on GitHub Container Registry (ghcr.io).
Zero-config npm usage is also supported:
npx -y figranium-mcpFor local development:
git clone https://github.com/figranium/figranium-mcp
dcd figranium-mcp
npm install
npm run builddocker pull ghcr.io/figranium/figranium-mcp:latestEnvironment Variables
The server requires the following environment variables to interact with your Figranium instance:
FIGRANIUM_BASE_URL: The base URL of your Figranium server. Defaults tohttp://localhost:11345.FIGRANIUM_API_KEY: The API key generated from Figranium settings to authorize requests. This variable is required for startup.
If FIGRANIUM_API_KEY is missing, the server prints a clear setup message and exits gracefully.
Client Integration
Claude Desktop
Add the container configuration to your claude_desktop_config.json:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"figranium": {
"command": "npx",
"args": ["-y", "figranium-mcp"],
"env": {
"FIGRANIUM_BASE_URL": "http://localhost:11345",
"FIGRANIUM_API_KEY": "your_figranium_api_key_here"
}
}
}
}Note for Local Hosts: If your Figranium instance runs locally on your host machine, use
http://localhost:11345when running vianpx.
Cursor Integration
Add the following to ~/.cursor/mcp.json:
{
"mcpServers": {
"figranium": {
"command": "npx",
"args": ["-y", "figranium-mcp"],
"env": {
"FIGRANIUM_BASE_URL": "http://localhost:11345",
"FIGRANIUM_API_KEY": "YOUR_API_KEY"
}
}
}
}This lets Claude Desktop and Cursor launch the package directly without requiring a local build or a Docker bridge.
Server-Wide System Instructions
The server initializes with embedded guidelines for LLM agents detailing the task lifecycle:
Task Creation: Structuring name, starting URL, execution mode (
scrape,agent, orheadful), and stealth mechanisms.Step Sequence Construction: Ordering action steps (
navigate,wait_selector,click,type,javascript) and execution flow.Selector Strategy: Preferring robust ARIA, ID, and semantic class selectors with fallback strategies.
Execution & Variables: Injecting and overriding runtime context variables.
Available Resources
figranium://schemas/task-v1.json
MIME Type:
application/jsonDescription: Exposes the complete JSON Schema specification of a Figranium task. Allows agents to dynamically inspect valid parameters and payload shapes.
Available Tools
Task Operations
create_task: Create a complete, fully-configured Figranium automation task including sequential action steps, state variables, anti-bot stealth mechanisms, and optional scheduling.task_list: List all task IDs, names, and descriptions registered on the Figranium server.task_execute: Run a saved task bytaskIdwith optional variable overrides.
Execution Operations
execution_list: Retrieve a summary of past task execution logs and statuses.
Schedule Operations
schedule_list: List all tasks with configured schedules.schedule_get_all_status: Retrieve overall scheduler state and metadata.schedule_get_status: Get active schedule details and next run time for a specifictaskId.schedule_set: Create or update a cron or frequency schedule on a task.schedule_delete: Disable and remove a task schedule.schedule_describe: Validate and preview a schedule configuration without applying it.
Rich Input Diagnostics & Self-Correction
If an invalid parameter payload is supplied to create_task, the server returns structured Zod diagnostic output (isError: true). This allows connected LLMs to analyze schema errors and attempt immediate self-correction.
Example response:
Schema Validation Failed!
Detailed breakdown of validation errors:
- At Step Index 2 (action step #3), parameter "type" failed validation: Invalid enum value. Expected 'click' | 'type' | 'wait' ..., received 'clikc'Local Development & Source Build
If you wish to modify the source code or run without Docker:
Prerequisites
Node.js v18+
npm v9+
Build & Run
# Clone repository
git clone [https://github.com/figranium/figranium-mcp.git](https://github.com/figranium/figranium-mcp.git)
cd figranium-mcp
# Install dependencies and compile TypeScript
npm install
npm run build
# Watch mode for active development
npm run watchTesting with MCP Inspector
Inspect server tools and resources using the official MCP debugging suite:
npx @modelcontextprotocol/inspector npx -y figranium-mcpMaintenance
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
- AlicenseBqualityDmaintenanceEnables AI assistants to interact with Automatisch workflow automation platform, allowing them to create, manage, and monitor workflows, connections, and executions through natural language commands.1067MIT
- Flicense-qualityDmaintenanceEnables LLMs to programmatically control n8n via natural language for automated workflow creation, modification, and execution management.1
- Flicense-qualityDmaintenanceEnables AI assistants to query and manage Flowcore resources through a structured API.419
- AlicenseBqualityAmaintenanceEnables AI assistants to manage Temporal workflows, schedules, and workflow executions through a standardized interface.3148Apache 2.0
Related MCP Connectors
Reliable async execution for agent tool calls: schema gating, retries, idempotency, audit trail.
Turns vague automation requests into tool stacks, prompts, QA checks, and human boundaries.
Intent execution engine for autonomous agent task routing
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/figranium/figranium-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server