Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Enables Cursor IDE to interact with Tealfabric platform, allowing management of webapps, processes, and documents through natural language.

README.md

Tealfabric MCP Server for Cursor

MCP (Model Context Protocol) server that connects Cursor IDE to the Tealfabric platform. The model in Cursor can list webapps and processes, publish webapps, get/update process steps, execute processes, and upload/manage documents (package files for delivery).

Prerequisites

  • Node.js 18+
  • A Tealfabric API key (create one in Tealfabric: User settings → API Keys, or POST /api/v1/api-keys when logged in)

Install

cd cursor-mcp-tealfabric
npm install
npm run build

Cursor setup

  1. Create an API key in Tealfabric (if you don’t have one).
  2. Add the MCP server in Cursor:
  • Cursor Settings (Cmd+, / Ctrl+,) → Tools & MCPAdd new MCP server
  • Or create/edit .cursor/mcp.json in your project (or ~/.cursor/mcp.json for global):
{
  "mcpServers": {
    "tealfabric": {
      "command": "node",
      "args": ["/ABSOLUTE/PATH/TO/cursor-mcp-tealfabric/dist/index.js"],
      "env": {
        "TEALFABRIC_API_KEY": "YOUR_API_KEY_HERE",
        "TEALFABRIC_API_URL": "https://tealfabric.io"
      }
    }
  }
}

Replace:

  • YOUR_API_KEY_HERE with your Tealfabric API key (e.g. tf_live_...).
  • /ABSOLUTE/PATH/TO/cursor-mcp-tealfabric/... with the real path to this repo (e.g. /Users/username/src/cursor-mcp-tealfabric/dist/index.js).
  1. Restart Cursor so it picks up the new server.

Tools exposed to Cursor

| Tool | Description | |------|-------------| | tealfabric_list_connectors | List connectors (optional action: get, parameters) | | tealfabric_test_connector | Test connector configuration | | tealfabric_get_connector_oauth2_required | Check whether connector requires OAuth2 | | tealfabric_list_integrations | List integrations or query by action/filter | | tealfabric_create_integration | Create a new integration | | tealfabric_update_integration | Update an existing integration | | tealfabric_list_webapps | List webapps (optional: search, limit) | | tealfabric_get_webapp | Get one webapp by ID (optional version) | | tealfabric_create_webapp | Create a new webapp | | tealfabric_update_webapp | Update webapp (e.g. page_content, name) | | tealfabric_publish_webapp | Publish a webapp | | tealfabric_list_processes | List ProcessFlow processes | | tealfabric_get_process | Get one process by ID | | tealfabric_list_process_steps | List steps of a process | | tealfabric_get_process_step | Get one process step by step_id | | tealfabric_execute_process | Execute a process (optional input) | | tealfabric_create_process | Create a new process (process flow) | | tealfabric_update_process | Update an existing process | | tealfabric_create_process_step | Create a new step in a process flow | | tealfabric_update_process_step | Update an existing process step | | tealfabric_list_documents | List documents in a directory | | tealfabric_get_document_metadata | Get file metadata | | tealfabric_download_document | Download a file (returns base64 payload) | | tealfabric_upload_document | Upload a file (e.g. built package) | | tealfabric_move_document | Move or rename file/directory | | tealfabric_delete_document | Delete file or directory |

Environment variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | TEALFABRIC_API_KEY | Yes | — | Tealfabric API key (X-API-Key / Bearer) | | TEALFABRIC_API_URL | No | https://tealfabric.io | Tealfabric base URL |

Security

  • Do not commit .cursor/mcp.json if it contains your real API key. Use .cursor/mcp.json.example (without the key) and add mcp.json to .gitignore, or use Cursor’s UI so the key stays local.
  • API keys are scoped to your user/tenant in Tealfabric; create keys with minimal required scopes if your platform supports it.

Documentation

Related projects

Tealfabric exposes the same MCP capabilities across different host environments. Each repo ships the appropriate packaging and setup for its platform:

| Host | Repository | |------|------------| | Cursor (this repository) | tealfabric/cursor-mcp-tealfabric | | Claude (Claude Code and compatible MCP clients) | tealfabric/claude-mcp-tealfabric | | Lovable | tealfabric/lovable-mcp-tealfabric |

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Files & Docs servers.