Tealfabric MCP Server for Cursor

Tealfabric MCP Server for Cursor

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

Category
Visit Server

README

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

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured