# ModuleX documentation > ModuleX is an AI workflow orchestration platform. Build, run, and automate AI workflows with a no-code visual canvas, the AI Composer (text-to-workflow), an agentic Assistant, 175+ integrations, managed RAG knowledge bases, realtime multi-user collaboration, and a REST API with JavaScript and Python SDKs. Authenticate with `Authorization: Bearer mx_live_*` plus the `X-Organization-ID` header. ## Start ### Welcome - [ModuleX documentation](https://docs.modulex.dev/): Build, run, and automate AI workflows with ModuleX — the no-code canvas, AI Composer, managed knowledge (RAG), 175 integrations, and a developer API with JavaScript and Python SDKs. - [Why ModuleX](https://docs.modulex.dev/get-started/why-modulex): What makes ModuleX different: build with natural language or a visual canvas, collaborate in realtime, bring your own model keys, ground answers in your own knowledge, and connect 175 integrations. - [Core concepts at a glance](https://docs.modulex.dev/get-started/core-concepts): A skimmable map of the ideas behind ModuleX: workflows and runs, nodes, the AI Composer, the Assistant, knowledge and RAG, credits, and organizations. ### Quickstart - [Quickstart: your first authenticated API call](https://docs.modulex.dev/get-started/quickstart): Create an organization, mint a mx_live_ API key, and make your first authenticated ModuleX call with Authorization: Bearer and X-Organization-ID — in cURL, Python, and JavaScript. - [Run your first workflow](https://docs.modulex.dev/get-started/first-workflow): Build your first ModuleX workflow with no code — describe it to the AI Composer or drag nodes onto the canvas, then run it and watch the live result stream in. - [Make your first API call](https://docs.modulex.dev/get-started/first-api-call): Run a ModuleX workflow programmatically and stream its result with cURL, Python, and JavaScript — authenticated with Authorization: Bearer and X-Organization-ID. ### Foundations - [Architecture overview](https://docs.modulex.dev/get-started/architecture): How ModuleX fits together: one FastAPI backend, a Next.js app, a Socket.io realtime server, two SDKs, and an installable tool catalog, bound by one Postgres, one Redis, and Clerk. - [Base URLs, environments & versioning](https://docs.modulex.dev/get-started/environments): The ModuleX API base URL (https://api.modulex.dev), how to point the SDKs at local or staging environments, why there is no /v1 path segment, and how the API and SDKs are versioned. ### Concepts - [How ModuleX works](https://docs.modulex.dev/concepts/overview): The end-to-end mental model behind ModuleX: you author a workflow, you run it, and you observe the run live as each step streams its progress. - [Workflows & runs explained](https://docs.modulex.dev/concepts/workflows-and-runs): Understand the difference between a workflow and a run in ModuleX, how a run moves through its lifecycle and status, and the three distinct identifiers that all get called a run id. - [Workflow engine & nodes](https://docs.modulex.dev/concepts/workflow-engine): How the ModuleX workflow engine compiles a JSON workflow into a runnable graph: the 9 node types, edges, the __start__/__end__ virtual nodes, run state and reducers, and the {{nodeId.path}} reference model. - [AI Composer: text to workflow](https://docs.modulex.dev/concepts/ai-composer): How the AI Composer turns a plain-English request into an editable workflow graph on the canvas, pauses to ask you questions, and lets you save or revert its changes. - [Assistant: agentic chat with tools and approvals](https://docs.modulex.dev/concepts/assistant): The Assistant is ModuleX's workflow-independent agentic chat. It searches your connected tools, calls them step by step, pauses for approval on risky actions, and shares the same chat store as the AI Composer. - [Knowledge & RAG](https://docs.modulex.dev/concepts/knowledge-rag): How ModuleX retrieves your company knowledge: knowledge bases, managed (modulexdb) versus bring-your-own-key storage, and the ingest and retrieval flow that powers RAG. - [Credentials & OAuth2 (PKCE)](https://docs.modulex.dev/concepts/credentials-oauth): How ModuleX stores integration credentials, runs the OAuth2 authorization-code flow with PKCE, encrypts secrets at rest, and resolves which credential a tool or model uses at run time — with the full credentials API and SDK reference. - [Organizations, roles & membership](https://docs.modulex.dev/concepts/organizations-roles): How tenancy works in ModuleX: the organization is your workspace and billing boundary, the X-Organization-ID header scopes every request, and the two live roles are owner and admin. - [Credits & the billing model](https://docs.modulex.dev/concepts/credits-billing): How ModuleX meters managed usage in credits, what spends them, the difference between managed and bring-your-own-key usage, and where the billing gate can pause a run. - [Realtime & collaboration model](https://docs.modulex.dev/concepts/realtime-model): ModuleX has two separate realtime systems: runs stream their progress to you over SSE, and the workflow canvas syncs between teammates over Socket.io. This page explains what each one is for and how they fit together. ## Build ### App overview - [Tour the ModuleX app](https://docs.modulex.dev/platform/overview): A guided tour of the ModuleX web app — where chat, the workflow builder, knowledge, integrations, and settings live, and how to move between them. ### Chat - [Chat in ModuleX: one place to ask, run, and search](https://docs.modulex.dev/platform/chat/overview): Chat is the conversational surface in ModuleX. Talk to the agentic Assistant, run a workflow from a message, and ask questions answered from your knowledge bases — with answers that stream back live. - [Choosing a model for chat](https://docs.modulex.dev/platform/chat/model-selection): Pick the language model behind a ModuleX chat — ModuleX-managed models billed in credits or your own provider key (BYOK) — and understand how per-organization availability is decided. - [Run a workflow from chat](https://docs.modulex.dev/platform/chat/workflow-run): Trigger a saved workflow from a ModuleX chat and watch it run live: send your inputs as a message, follow each step as it happens, answer any approval the run asks for, and read the result inline. - [Chat with your knowledge: answers grounded in your documents](https://docs.modulex.dev/platform/chat/knowledge-chat): Ask questions in chat and get answers drawn from your own knowledge bases. ModuleX retrieves the most relevant passages, writes a grounded reply, and shows the sources it used. - [Voice messages in chat: status and what to do today](https://docs.modulex.dev/platform/chat/voice-message): Voice input in ModuleX chat is not yet available. The chat composer is text-only today. Here is what that means, what chat does support right now, and where to follow the change. - [Private chats vs organization chats](https://docs.modulex.dev/platform/chat/private-org-chat): Control who can see a chat in ModuleX. Keep a conversation private to yourself, or make it visible to everyone in your organization — and understand how the active organization scopes what you see. - [Chat history: browse, find & manage past chats](https://docs.modulex.dev/platform/chat/history-folders): Browse your ModuleX chat history, reopen past conversations, find an old chat, and delete chats one at a time or in bulk — plus where folders and built-in search stand today. ### Knowledge - [Manage knowledge bases](https://docs.modulex.dev/platform/knowledge/overview): Create knowledge bases in the ModuleX app, upload documents, and use them to answer questions across chats, the Assistant, and workflows. - [Managed knowledge (modulexdb)](https://docs.modulex.dev/platform/knowledge/managed): The complete technical reference for ModuleX-hosted vector storage: the per-knowledge-base embedding and chunking config with every field, type, and default; the ingest and retrieval pipelines; the credit cost of ingest and retrieval; the billing gate that returns 402/403/429; and full worked examples in cURL, Python, and JavaScript. - [Bring your own vector store (BYOK knowledge)](https://docs.modulex.dev/platform/knowledge/external-providers): Connect Qdrant, Pinecone, MongoDB Atlas, or Weaviate as an external knowledge provider and retrieve from it in workflows. BYOK retrieval runs uncosted. - [Upload and manage documents](https://docs.modulex.dev/platform/knowledge/documents): Add documents to a ModuleX knowledge base, watch them process into searchable chunks, and retry, inspect, or delete them. Upload size is set by your plan, not a fixed 50 MB cap. ### Collaboration - [Co-edit a workflow canvas with your team](https://docs.modulex.dev/platform/collaboration/canvas): Work on the same ModuleX workflow canvas at the same time as your teammates: live cursors, presence avatars, node locks, and automatic conflict handling — no saving, no overwriting. - [Shared and org-visible chats](https://docs.modulex.dev/platform/collaboration/chat): How chats become visible to your whole organization, who can see what, and how teams collaborate around shared conversations in ModuleX. ### Builder - [Build workflows on the visual canvas](https://docs.modulex.dev/workflow-builder/overview): Tour the ModuleX workflow builder: the drag-and-drop canvas, adding nodes and edges, the AI Composer copilot, and running a workflow live without leaving the page. - [Navigating the workflow canvas](https://docs.modulex.dev/workflow-builder/canvas): Move around the ModuleX workflow builder: pan, zoom, fit, and select on the canvas, open the Detail Panel, lock the canvas while you work, and read the on-canvas controls. - [AI Composer in the builder](https://docs.modulex.dev/workflow-builder/composer): Build and edit your workflow hands-on by chatting with the AI Composer copilot inside the canvas: stream edits live, answer its questions, and save or revert in one click. - [Variables, references & run state](https://docs.modulex.dev/workflow-builder/variables-and-references): Pass data between workflow nodes with the {{nodeId.path}} reference syntax, the state_schema, per-node output keys, reducers, and run-state defaults — with a full worked example. - [Versioning, deployments & canvas history](https://docs.modulex.dev/workflow-builder/versioning-history): How ModuleX tracks workflow versions: immutable deployment snapshots, the canvas edit-version history, undo/redo, and restoring a prior version through the API and SDKs. - [Error handling & retries](https://docs.modulex.dev/workflow-builder/error-handling-retries): How node failures surface as error events, how to configure per-node retries with exponential backoff, how to debug a failed run, and the common causes of node errors in ModuleX workflows. ### Nodes - [Node types reference](https://docs.modulex.dev/workflow-builder/nodes/overview): The nine ModuleX node types, how each writes its result into run state under its own id, the {{node_id.field}} reference system, and how to choose the right node for a step. - [LLM node](https://docs.modulex.dev/workflow-builder/nodes/llm): Call a language model inside a workflow with templated prompts, {{node_id.field}} references, and optional structured JSON output. Full LLMNodeConfig reference, streaming behavior, managed vs BYOK billing, inputs/outputs, and errors. - [Agent node](https://docs.modulex.dev/workflow-builder/nodes/agent): Run an autonomous agent step inside a workflow: bind integration tools to a model and let it call them in a manual loop until it produces a final answer. Full AgentNodeConfig reference, the tool loop and stop conditions, HITL, credit impact, inputs/outputs, errors, and a worked example. - [Knowledge node](https://docs.modulex.dev/workflow-builder/nodes/knowledge): Retrieve from a knowledge base inside a workflow with the knowledge node. Full KnowledgeNodeConfig reference — provider, query, top-k, min-score, output format — plus managed-retrieval credit reservation, inputs/outputs, every error, and a worked example. - [Tool node](https://docs.modulex.dev/workflow-builder/nodes/tool): Call one integration action deterministically inside a workflow. Full ToolNodeConfig and ToolDefinition reference: input_mapping, parameter_defaults, parameter_overrides, credential resolution, per-action credit cost, custom MCP tools, inputs/outputs, and errors. - [Function node: HTTP, webhooks & schema validation](https://docs.modulex.dev/workflow-builder/nodes/function): Reference for the ModuleX function node and its four built-in functions — http_request, send_webhook, validate_schema, and validate_workflow_schema — with every parameter, input/output shape, error, and a worked example. - [Conditional node: branching & loops](https://docs.modulex.dev/workflow-builder/nodes/conditional): Branch a workflow on visual expression conditions, a Python expression, or an LLM decision — and run FOR, FOREACH, and WHILE loops. Full ConditionalNodeConfig reference, operator list, edge routing, run-state outputs, credit impact, errors, and a worked example. - [Interrupt node — pause a workflow for human approval (HITL)](https://docs.modulex.dev/workflow-builder/nodes/interrupt): Configure the ModuleX workflow Interrupt node (InterruptNodeConfig): the message template, resume_schema, and examples fields; how the run pauses with a structured interrupt event and resumes on the same run_id via POST /workflows/resume; and why it has no streaming branch. - [Transformer node](https://docs.modulex.dev/workflow-builder/nodes/transformer): Reshape, map, combine, and convert data between workflow steps with a no-code pipeline of operations. Full TransformerNodeConfig reference: source, operations, the complete operation catalog, {{node_id.field}} references, inputs/outputs, errors, and credit impact. - [Guardrails node: validation, PII & routing](https://docs.modulex.dev/workflow-builder/nodes/guardrails): Validate run data with JSON Schema, regex, and PII detection, then mask, block, warn, or route on the result. Full GuardrailsNodeConfig reference, the result schema written to state, pass/fail routing model, errors, credit impact, and a worked example. ### Execution & deployment - [Run a workflow from the builder](https://docs.modulex.dev/workflow-builder/execution/running): Run the live canvas from the builder, watch every node stream over SSE, handle interrupts, errors, retries, and billing denials, and review the durable run history. - [Deploy & version a workflow](https://docs.modulex.dev/workflow-builder/execution/deploy): Create immutable deployment snapshots of a workflow, manage versions, and promote or roll back the live deployment from the app, the REST API, and the SDKs. - [Schedule a workflow to run on cron or an interval](https://docs.modulex.dev/workflow-builder/execution/schedule): Run a deployed ModuleX workflow automatically on a cron or interval schedule: create, pause, resume, and retry schedules; inspect run history and stats; every parameter, response field, and error — with cURL, Python, and JavaScript. - [Trigger a workflow run over the API](https://docs.modulex.dev/workflow-builder/execution/api-endpoint): Run a deployed ModuleX workflow programmatically with POST /workflows/run, pass typed inputs, stream the result over SSE, and handle the billing-gate 402/403/429 responses — shown in cURL, Python, and JavaScript. - [Run a workflow from chat](https://docs.modulex.dev/workflow-builder/execution/run-on-chat): Expose a deployed workflow as a chat-triggered run: send inputs as a chat message, persist the turn to a chat thread, and stream node events back over SSE — from the app, REST, or the SDKs. ### Realtime co-editing - [Realtime co-editing & external sync](https://docs.modulex.dev/workflow-builder/realtime-coediting): How two or more people edit the same ModuleX workflow canvas at once — the Socket.io edit events, presence and node locks, the live workflow:external-sync path for Composer/API/deployment changes, the two-plane version model, and conflict handling. ### Assistant Chat - [Meet the Assistant: agentic chat that gets work done](https://docs.modulex.dev/assistant/overview): The ModuleX Assistant is a workflow-independent agentic chat. Describe a task in plain language and it searches your connected tools, calls them step by step, and pauses for your approval — no workflow to build first. - [The Assistant's agentic loop: reason, act, observe](https://docs.modulex.dev/assistant/how-it-works): A technical walkthrough of how the ModuleX Assistant runs a turn: the reason to act to observe loop, the shared ComposerChat table with kind=assistant, turns and runs, and how a turn terminates — with parameters, events, errors, and credit impact. - [How the Assistant uses tools](https://docs.modulex.dev/assistant/using-tools): How the ModuleX Assistant discovers integrations, calls tool actions with your organization's credentials, requests missing credentials over human-in-the-loop, and what each tool costs in credits — BYOK vs managed. - [Human-in-the-loop: pause, ask, and resume the Assistant](https://docs.modulex.dev/assistant/human-in-the-loop): How the ModuleX Assistant pauses mid-task to ask a structured question or request approval, the five request kinds and seven response kinds, and exactly how to resume a paused run over REST and the SDKs. - [Stream the Assistant over SSE](https://docs.modulex.dev/assistant/streaming): Stream the Assistant's actions and output live with Server-Sent Events: the action-frame wire format, every event type, listen() in the JavaScript and Python SDKs, how to cancel a turn, and how app streaming differs from the SDKs. - [Choose the Assistant model & behavior](https://docs.modulex.dev/assistant/models-and-settings): Pick a managed or BYOK model for the ModuleX Assistant, understand per-organization model availability, and configure how a chat behaves. - [Assistant permissions, rate limits & credit cost](https://docs.modulex.dev/assistant/permissions-and-limits): Exactly who can use the ModuleX Assistant (owner or admin only — the member role is retired), the credit cost per turn, the per-plan rate limits, and the 402/403/429 denial envelopes the Assistant returns when a limit is hit. - [Assistant examples: four tasks worked end to end](https://docs.modulex.dev/assistant/examples): Four worked ModuleX Assistant tasks you can copy: research and summarize, inbox triage, draft and send, and a multi-tool task. See the plain-language prompt, the steps the Assistant takes, where it pauses for approval, and the result. ## Integrations ### Using integrations - [Integrations: connect your tools to ModuleX](https://docs.modulex.dev/integrations/overview): Connect ModuleX to 175 services and call their tools from your workflows and the Assistant. Learn what integrations are, browse the catalog, and connect credentials with OAuth or your own keys. - [Installing & using integrations](https://docs.modulex.dev/integrations/install): How ModuleX integrations are discovered through Python entry points, how to install the modulex-integrations package and its tool SDK dependencies, and the difference between managed and bring-your-own-key tool usage. - [Integration authentication & credentials](https://docs.modulex.dev/integrations/authentication): How ModuleX integrations authenticate: the six auth schema variants, the OAuth2 PKCE connect flow, encryption at rest, and how credentials are resolved at run time. - [Managing credentials](https://docs.modulex.dev/integrations/managing-credentials): Create, connect, test, rotate, and revoke ModuleX integration credentials in the app and via the API. Credentials are organization-scoped, encrypted at rest, and require an owner or admin role. - [Browse the integration catalog](https://docs.modulex.dev/integrations/catalog): Browse all 175 ModuleX integrations by category, search for a service, and learn how to read a tool's catalog page before you connect it. ### Providers - [Connect LLM providers](https://docs.modulex.dev/integrations/llm-providers/overview): Connect language-model providers to ModuleX as managed (modulexai, billed in credits) or BYOK (your own key, uncosted), and select models for chat, the Assistant, and workflow nodes. - [OpenAI](https://docs.modulex.dev/integrations/llm-providers/openai): Connect your OpenAI account to ModuleX, browse the GPT, o-series, and embedding models in the catalog, select them in workflows, the Assistant, and chat, and understand BYOK billing. - [Anthropic Claude models](https://docs.modulex.dev/integrations/llm-providers/anthropic): Connect Anthropic to ModuleX with your own API key, see the available Claude models, and understand how BYOK usage is billed. - [Google Gemini models](https://docs.modulex.dev/integrations/llm-providers/gemini): Connect Google Gemini to ModuleX with your own API key, browse the available Gemini models, and understand how BYOK usage is billed. - [xAI Grok models](https://docs.modulex.dev/integrations/llm-providers/xai): Connect xAI to ModuleX with your own API key, see the available Grok models, and understand how BYOK usage is billed. - [ModuleX-managed models](https://docs.modulex.dev/integrations/llm-providers/modulexai): Use ModuleX-managed models (modulexai) — the default LLM provider that needs no API key, ships curated models, and is metered in credits. Includes the full model catalog, credit-cost formula, and how to switch to BYOK. - [Knowledge providers: managed and external vector stores](https://docs.modulex.dev/integrations/knowledge-providers/overview): The vector stores ModuleX retrieves from for RAG: the managed modulexdb store versus bring-your-own Qdrant, Pinecone, MongoDB Atlas, and Weaviate, with the exact connection fields, the knowledge node contract, and how retrieval is billed. - [modulexdb — the ModuleX-managed vector store](https://docs.modulex.dev/integrations/knowledge-providers/modulexdb): modulexdb is the ModuleX-managed vector store: a fully hosted pgvector store with managed embeddings, used as the knowledge provider for a knowledge base or a workflow knowledge node. Reference for the provider config (every field, type, and default), the credit cost of ingest and retrieval, and the billing gate that returns 402/403/429. - [Qdrant](https://docs.modulex.dev/integrations/knowledge-providers/qdrant): Connect Qdrant as a bring-your-own vector store in ModuleX: create a Qdrant connection credential, configure a Knowledge node to query your collections, and understand BYOK retrieval with no ModuleX credit cost. - [Pinecone vector store (BYOK)](https://docs.modulex.dev/integrations/knowledge-providers/pinecone): Connect Pinecone as a bring-your-own vector store in ModuleX: store an API key credential, configure a knowledge node, and run BYOK vector retrieval inside workflows. - [MongoDB Atlas Vector Search](https://docs.modulex.dev/integrations/knowledge-providers/mongodb-atlas): Connect MongoDB Atlas Vector Search to ModuleX as a bring-your-own-key knowledge provider: create the credential from a connection string, configure a workflow knowledge node against a database.collection, and run uncosted $vectorSearch retrieval. Every field, type, default, and error. - [Weaviate as a vector store](https://docs.modulex.dev/integrations/knowledge-providers/weaviate): Connect a Weaviate cluster to ModuleX as a bring-your-own-key knowledge provider, configure the knowledge node, and run vector retrieval against your own classes. ### Building integrations - [Build an integration](https://docs.modulex.dev/integrations/building/overview): Author your own ModuleX integration end to end: the per-integration directory layout, the manifest, the @tool function contract, entry-point registration in the modulex.tools group, and how to test it locally before the runtime loads it. - [Manifest & schema contract](https://docs.modulex.dev/integrations/building/manifest-schema): The complete Pydantic contract every ModuleX integration manifest must satisfy — IntegrationManifest, ActionDefinition, ParameterDef, the six auth schema variants, EnvVar, and TestEndpoint. - [The @tool function contract](https://docs.modulex.dev/integrations/building/tool-contract): The exhaustive @tool decorator contract for ModuleX integrations: the mandatory decorator order, the two auth-parameter conventions, typed Pydantic output models, the three error patterns, and worked GitHub, Slack, and Exa examples. - [Custom MCP servers](https://docs.modulex.dev/integrations/building/custom-mcp): Connect an external Model Context Protocol (MCP) server to ModuleX as a credential, auto-discover its tools, and call them from workflows and agents. Exhaustive reference: the three REST routes, every request and response field, the discovery metadata shape, transport and auth, error envelopes, and SDK equivalents. ### Tools ### AI & Machine Learning - [Amazon Alexa Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/amazon-alexa): Simulate and test Alexa skills via the Alexa Skills Management API (SMAPI). - [Browser Use Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/browser-use): AI-powered cloud browser automation via the Browser Use API - [ElevenLabs Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/elevenlabs): AI voice generation, transcription, sound effects, voice cloning, and conversational AI agents. Uses the `elevenlabs` SDK. - [fal.ai Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/fal-ai): Queue-based AI model inference via the fal.ai platform - [HeyGen Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/heygen): AI video generation platform for creating talking avatar videos - [Mem0 Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/mem0): Persistent agent memory management — add, search, and retrieve long-term memories so AI agents can recall user context, preferences, and prior conversations across sessions. - [Pulse Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/pulse): Extract text and structured content from PDFs, images, and Office files using Pulse OCR. Returns clean markdown, page counts, layout bounding boxes, chunks, and extracted figures. - [Quiver Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/quiver): Generate SVG images from text prompts or vectorize raster images into SVGs using QuiverAI. Supports reference images, style instructions, and multiple output generation. ### Analytics & Data - [Amplitude Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/amplitude): Track events, identify users and groups, search for users, query analytics, and retrieve revenue data from Amplitude - [Databricks Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/databricks): Manage Databricks jobs, runs, SQL warehouses, and vector search indexes. - [Google Analytics Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/google-analytics): Manage Google Analytics 4 properties, list accounts, configure key events, and run analytics reports against the Google Analytics Admin and Data APIs. - [Google Tag Manager Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/google-tag-manager): Manage tags, variables, and workspaces in Google Tag Manager containers - [Microsoft Power BI Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/microsoft-power-bi): Business intelligence and analytics platform for interactive visualizations, reports, and dashboards - [Mixpanel Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/mixpanel): Product analytics platform for tracking user events and behaviors - [PostHog Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/posthog): Product analytics platform: events, persons, groups, cohorts, dashboards, insights, experiments, feature flags, surveys, session recordings, error tracking, and more (78 actions). - [Segment Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/segment): Customer data platform for collecting, cleaning, and controlling customer data via the Segment Tracking API - [Similarweb Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/similarweb): Access comprehensive website analytics including traffic estimates, engagement metrics, rankings, and traffic sources using the Similarweb API. ### Cloud Infrastructure - [Amazon Web Services Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/aws): Interact with AWS services including DynamoDB, S3, Lambda, SNS, SQS, EventBridge, CloudWatch Logs, and Redshift. - [Azure Storage Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/azure-storage): Manage blobs and containers in Microsoft Azure Blob Storage - [Dropbox Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/dropbox): Cloud file storage, sharing, and collaboration platform - [GoDaddy Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/godaddy): Domain registration, availability checking, and management via the GoDaddy API - [Google Cloud Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/google-cloud): Google Cloud Platform services including Cloud Storage, BigQuery, Compute Engine, and Cloud Logging - [Google Drive Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/google-drive): Google Workspace integration: Drive (files/folders), Docs, Sheets, and Slides via the v3 / v1 REST APIs. - [Microsoft OneDrive Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/microsoft-onedrive): Access and manage files in Microsoft OneDrive: search, list, upload, download, create folders, and create sharing links via the Microsoft Graph API. ### Communication - [AgentMail Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/agentmail): Integrate AgentMail into your workflow. Create and manage email inboxes, send and receive messages, reply to threads, manage drafts, and organize threads with labels. - [Gmail Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/gmail): Google Gmail email service for sending, reading, and managing emails. - [Google Meet Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/google-meet): Schedule Google Meet video conferences via Google Calendar events. - [Mailgun Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/mailgun): Transactional email API for sending, receiving, and tracking email - [Microsoft Outlook Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/microsoft-outlook): Send, draft, search, and organize email; manage contacts, folders, and categories in Microsoft Outlook via Microsoft Graph. - [Microsoft Teams Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/microsoft-teams): Create channels, send channel and chat messages, list teams/channels/chats/messages/shifts, search messages, and retrieve the current user via Microsoft Graph. - [Resend Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/resend): Send transactional and marketing emails, retrieve email status, manage contacts, and view domains with Resend. - [Revolt Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/revolt): Revolt open-source chat platform — group management and friend requests - [Slack Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/slack): Team communication and collaboration platform for messaging, channels, and workspace management - [Telegram Bot Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/telegram): Send messages, manage chats, and interact with users via Telegram Bot API. Supports text messages, media, chat management, and user moderation. - [Twilio Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/twilio): Cloud communications platform for SMS, voice calls, phone number lookup, and verification via the Twilio REST API. - [Twilio Voice Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/twilio-voice): Make and manage phone calls with Twilio Programmable Voice. Place outbound calls with TwiML instructions, list call logs, and retrieve call recordings. - [WhatsApp Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/whatsapp): Send WhatsApp messages through the WhatsApp Cloud API (Meta Graph API). Deliver text messages with optional link previews directly to recipients on WhatsApp. - [Zoom Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/zoom): Video conferencing, meetings, webinars, and team chat platform ### CRM - [Bloomerang Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/bloomerang): Nonprofit donor management and fundraising CRM platform - [HubSpot Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/hubspot): HubSpot CRM integration: contacts, companies, deals, tickets, and engagement (note/task/meeting) management. Uses the hubspot-api-client SDK. - [Insightly Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/insightly): CRM and project management platform for managing contacts, tasks, and sales pipelines - [Microsoft Dynamics 365 Sales Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/microsoft-dynamics-365-sales): CRM platform for managing accounts, contacts, appointments, and custom entities via the Dynamics 365 Web API - [Pipedrive Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/pipedrive): Sales CRM and pipeline management platform for tracking deals, contacts, activities, and leads. - [Salesforce Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/salesforce): Salesforce CRM integration: SOQL/SOSL queries, record CRUD, and convenience helpers for Accounts, Contacts, Leads, Opportunities, Tasks, Cases, and Campaign membership. ### Customer Support - [Freshdesk Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/freshdesk): Customer support helpdesk platform for managing tickets, contacts, agents, and knowledge base articles via the Freshdesk REST API. - [Intercom Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/intercom): Customer communication platform for support, engagement, and marketing automation. ### Databases - [Microsoft SQL Server Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/microsoft-sql-server): Execute queries and manage data in Microsoft SQL Server databases - [MySQL Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/mysql): MySQL database integration for executing SQL queries, managing tables, and performing CRUD operations. Uses the aiomysql driver. - [PostgreSQL Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/postgresql): PostgreSQL database integration for executing SQL queries, managing tables, and performing CRUD operations. Uses the asyncpg driver. - [Snowflake Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/snowflake): Snowflake data warehouse integration for executing SQL queries, managing tables, and performing data operations. Uses the snowflake-connector-python SDK. - [Supabase Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/supabase): Open-source Firebase alternative providing a Postgres database, authentication, instant APIs, and realtime subscriptions ### Developer Tools & Infrastructure - [Algolia Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/algolia): Search and indexing platform for building fast, relevant search experiences - [Browserbase Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/browserbase): Cloud browser infrastructure for running and managing headless browser sessions - [Cloudflare Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/cloudflare): Cloudflare DNS, WAF, zones, firewall rules, and load balancer management. - [Daytona Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/daytona): Run AI-generated code in secure, isolated cloud sandboxes. Create and manage sandboxes, execute shell commands, run Python, JavaScript, or TypeScript code, transfer files, and clone Git repositories. - [DigitalOcean Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/digital-ocean): Cloud infrastructure platform for deploying and managing Droplets, domains, and SSH keys via the DigitalOcean API - [GitHub Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/github): GitHub repository and code management platform - [GitLab Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/gitlab): GitLab repository and project management platform - [Google Maps Platform Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/google-maps-platform): Search for places and retrieve place details using the Google Places API (New) - [Greptile Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/greptile): Query and search codebases using natural language with Greptile. Get AI-generated answers about your code, find relevant files, and understand complex codebases. - [Heroku Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/heroku): Cloud platform for building, deploying, and managing applications - [Microsoft Entra ID Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/microsoft-entra-id): Identity and access management via Microsoft Graph API for users, groups, and directory objects. - [Mintlify Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/mintlify): Documentation platform with AI-powered assistant, semantic search, and project update triggers. - [Netlify Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/netlify): Web hosting and automation platform for modern web projects - [NPM Registry Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/npm): Access the npm registry to search packages, get package information, versions, dependencies, and download statistics - [Okta Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/okta): Manage users and user-type metadata in an Okta tenant via the Okta Management REST API (``/api/v1`` under your Okta subdomain). - [Postman Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/postman): API development and testing platform for building, monitoring, and managing APIs - [Railway Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/railway): Integrate Railway into workflows to list projects, manage services and environments, monitor deployments, trigger and roll back service deployments, and manage environment variables. - [ServiceNow Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/servicenow): Enterprise IT Service Management (ITSM) platform for managing incidents, cases, and service requests. Create and manage incidents, cases, and perform CRUD operations on any ServiceNow table. - [Vercel Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/vercel): Integrate with Vercel to manage deployments, projects, domains, DNS records, environment variables, aliases, edge configs, teams, webhooks, and deployment checks. ### E-Commerce - [Amazon Selling Partner Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/amazon-selling-partner): Amazon Selling Partner API for managing orders, inventory, pricing, and reports on Amazon marketplaces - [Etsy Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/etsy): Etsy marketplace listing management via the Open API v3 - [Google Merchant Center Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/google-merchant-center): Manage product listings in Google Merchant Center via the Shopping Content API - [Instacart Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/instacart): Create shareable recipe pages, shopping lists, and find nearby retailers on Instacart. No authentication required. - [Shopify Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/shopify): E-commerce platform for managing products, orders, customers, and content via the Shopify Admin GraphQL API - [Shopify Partner Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/shopify-partner): Shopify Partner API for managing apps, verifying webhooks, and accessing partner account data - [WooCommerce Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/woocommerce): WooCommerce REST API integration for managing orders, products, customers, and refunds on self-hosted WooCommerce stores. ### Education - [Instructure Canvas LMS Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/instructure-canvas): Learning management system for course, assignment, and user management via the Canvas REST API. ### Finance & Payments - [Coinbase Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/coinbase): Cryptocurrency trading and wallet management platform for buying, selling, and storing digital assets via the Coinbase Developer Platform (CDP) API. - [CoinMarketCap Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/coinmarketcap): Cryptocurrency market data, quotes, and metadata from the CoinMarketCap API - [Kalshi Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/kalshi): Access Kalshi prediction markets and trade event contracts: retrieve markets, events, series, orderbooks, trades, candlesticks, account balance, positions, orders, fills, settlements, exchange status, and place, cancel, or amend orders. - [Lemon Squeezy Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/lemon-squeezy): Digital products and subscriptions platform for selling software, SaaS, and digital goods with built-in payment processing. - [Mercury Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/mercury): Business banking platform for startups and scaling companies - [Nasdaq Data Link Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/nasdaq): Access comprehensive financial data from Nasdaq Data Link E360 platform including balance sheets, cash flows, fundamentals, company statistics, and reference data for publicly traded companies. - [RevenueCat Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/revenuecat): Manage in-app subscriptions and entitlements. Retrieve customer subscription status, grant or revoke promotional entitlements, record purchases, update subscriber attributes, and manage Google Play subscription billing. - [Square Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/square): Payment processing, commerce, and business management platform - [Stripe Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/stripe): Integrate Stripe into the workflow. Manage payment intents, customers, subscriptions, invoices, charges, products, prices, and events through the Stripe REST API. ### Marketing & Advertising - [Ahrefs Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/ahrefs): SEO toolset providing backlink analysis, referring domain data, and site explorer metrics via the Ahrefs REST API - [Customer.io Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/customerio): Marketing automation platform for personalized customer experiences through email, SMS, and push notifications - [Gamma Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/gamma): Integrate Gamma into the workflow. Can generate presentations, documents, webpages, and social posts from text, create from templates, check generation status, and browse themes and folders. - [Google Ad Manager Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/google-ad-manager): Programmatic advertising platform for managing ad inventory, reporting, and campaign delivery - [Google Ads Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/google-ads): Google Ads API integration: run GAQL reports across Campaigns, Ad Groups, Ads, and Customers; create customer lists; send offline conversions; generate keyword ideas. - [Google My Business Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/google-my-business): Manage Google Business Profile posts, reviews, and replies - [Google Search Console Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/google-search-console): Access Google Search Console data for search analytics and URL indexing - [Instantly Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/instantly): Integrate the Instantly V2 cold-email outreach API. Create and list leads, manage lead interest status, delete leads in bulk, list and create campaigns, reply to emails, and manage lead lists. - [Klaviyo Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/klaviyo): Email marketing and automation platform for personalized customer experiences. Manage lists, profiles, and subscriptions for targeted email campaigns. - [Loops Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/loops): Integrate Loops into the workflow. Create and manage contacts, send transactional emails, and trigger event-based automations. - [Mailchimp Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/mailchimp): Mailchimp marketing platform: list/audience CRUD, subscriber upsert, campaign lifecycle, tags, notes, and segments. - [PostGrid Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/postgrid): Programmatic direct mail delivery via the PostGrid Print & Mail API - [SEMrush Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/semrush): Comprehensive SEO analytics platform for domain analysis, keyword research, backlink analysis, competitor research, and traffic analytics. - [SendGrid Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/sendgrid): Email delivery and marketing platform for transactional and marketing emails. Send emails, manage contacts, create lists, and handle email suppressions. - [Short.io Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/short-io): URL shortening and link management platform with advanced analytics, custom domains, and device targeting. - [TinyURL Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/tinyurl): Professional URL shortening service with custom aliases, analytics, and link management features - [Yelp Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/yelp): Search for businesses, read reviews, and get business details via the Yelp Fusion API ### Monitoring & Observability - [CrowdStrike Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/crowdstrike): Integrate CrowdStrike Identity Protection into workflows to search sensors, fetch sensor details by device ID, and run sensor aggregate queries against the Falcon API. - [Datadog Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/datadog): Infrastructure monitoring, log management, and application performance platform - [Grafana Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/grafana): Manage Grafana dashboards, alert rules, annotations, contact points, data sources, and folders, and monitor instance and data source health via the Grafana HTTP API. - [incident.io Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/incidentio): Manage incidents, actions, follow-ups, workflows, schedules, escalations, custom fields, and more with incident.io — the incident management and on-call response platform. - [New Relic Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/new-relic): Integrate New Relic into workflows. Run NRQL queries, search monitored entities, fetch entity details, and record deployment change events via the NerdGraph GraphQL API. - [PagerDuty Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/pagerduty): Incident management and on-call scheduling platform - [Sentry Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/sentry): Error tracking and performance monitoring platform - [Vanta Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/vanta): Query compliance posture and manage evidence in Vanta. Monitor frameworks, controls, and automated tests; find failing test entities; manage evidence documents including file upload, download, and submission; and track people, policies, vendors, monitored computers, vulnerabilities, and risk scenarios. ### Productivity & Collaboration - [Canva Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/canva): Design platform for creating visual content, presentations, and documents - [ConvertAPI Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/convertapi): Powerful file conversion service supporting hundreds of format conversions including documents, images, spreadsheets, and web pages to PDF/JPG. - [DocuSign Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/docusign): Electronic signature and agreement management via the DocuSign eSignature REST API - [Fellow Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/fellow): Meeting productivity platform for notes, action items, and meeting management - [Figma Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/figma): Design collaboration platform for creating, sharing, and commenting on design files - [Google AppSheet Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/google-appsheet): Manage rows in Google AppSheet tables via the AppSheet API - [Google Contacts Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/google-contacts): Manage Google People (Contacts) — create, list, get, update, and delete contacts plus list Google Workspace directory people. - [Google Docs Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/google-docs): Create, read, and edit Google Docs documents via the Google Docs API - [Google Forms Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/google-forms): Create, update, and read Google Forms and their responses via the Google Forms API. - [Google Sheets Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/google-sheets): Read, write, and manage Google Sheets spreadsheets and worksheets. - [Google Slides Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/google-slides): Create and edit Google Slides presentations — manage slides, shapes, images, tables, and text via the Google Slides REST API. - [Google Tasks Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/google-tasks): Manage tasks and task lists using the Google Tasks API - [Google Workspace Admin Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/google-workspace): Retrieve admin audit activity reports from Google Workspace via the Admin SDK Reports API - [Grain Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/grain): Access Grain meeting recordings, transcripts, highlights, and AI-generated summaries. List and retrieve recordings with flexible filters, fetch full transcripts, browse teams, meeting types, and views, and manage webhook subscriptions for recording events. - [Granola Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/granola): Retrieve meeting notes, summaries, attendees, calendar details, and transcripts from Granola. - [Microsoft 365 People Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/microsoft-365-people): Manage contacts and contact folders via the Microsoft Graph API - [Microsoft Excel Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/microsoft-excel): Read, write, and manage Excel workbooks stored in OneDrive via the Microsoft Graph API. - [Notion Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/notion): Notion workspace integration: pages, databases, blocks, users, comments, and search. - [Obsidian Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/obsidian): Read, create, update, search, and delete notes in your Obsidian vault. Manage periodic notes, execute commands, and patch content at specific locations. Requires the Obsidian Local REST API plugin. - [Reflect Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/reflect): Note-taking and knowledge management via the Reflect API - [Typeform Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/typeform): Online form builder for surveys, quizzes, and interactive forms ### Project & Task Management - [Airtable Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/airtable): Cloud-based database platform for organizing, storing, and collaborating on structured data with spreadsheet-like interface and powerful automation capabilities. - [ClickUp Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/clickup): ClickUp integration: workspaces, spaces, folders, lists, tasks, comments, tags, and team members. - [Jira Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/jira): Atlassian Jira Cloud project tracking and issue management platform - [Linear Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/linear): Modern project management and issue tracking tool for software teams. Streamline workflows, track bugs, and coordinate tasks with powerful search, filtering, and automation capabilities. - [Monday.com Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/monday): Monday.com work management platform for boards, items, columns, and updates via the GraphQL API - [Motion Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/motion): AI-powered task and project management platform for automatic scheduling ### Sales - [Apollo.io Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/apollo-io): B2B sales intelligence platform with 210M+ contacts and 35M+ companies. Full CRM capabilities including enrichment, prospecting, contacts, accounts, deals, sequences, and tasks. - [Brandfetch Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/brandfetch): Integrate Brandfetch into your workflow. Retrieve brand logos, colors, fonts, and company data by domain, ticker, or name search. - [Clay Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/clay): Push records into a Clay table via its inbound webhook so Clay can run its data-enrichment waterfall on prospects and accounts. - [Crunchbase Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/crunchbase): Access Crunchbase company and organization data for business intelligence and research - [Dropcontact Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/dropcontact): Verify and enrich B2B contacts. Submit a contact with their name, company, website, or LinkedIn URL and receive a verified professional email, phone number, company firmographics, and LinkedIn profile. Enrichment is asynchronous: the request is submitted and polled until the result is ready. Credits are only charged when a verified email is returned. - [Enrow Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/enrow): Find verified B2B email addresses from a full name and company, or verify the deliverability of an existing email. Enrow performs deterministic verifications including catch-all emails — no additional verifier needed. - [Findymail Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/findymail): Find verified work emails by name, domain, or LinkedIn URL, verify deliverability, reverse-lookup profiles from emails, enrich company data, find employees by job title, look up phone numbers, search technology stacks, and check credit usage. - [Gong Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/gong): Revenue intelligence platform for recording, transcribing, and analyzing sales conversations - [Hunter Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/hunter): Find and verify professional email addresses using the Hunter.io API - [Icypeas Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/icypeas): Find a professional email address from a name and company domain, or verify whether an existing email is valid and deliverable. Results are returned asynchronously via polling. - [Lemlist Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/lemlist): Integrate Lemlist into your workflow. Retrieve campaign activities and replies, get lead information, and send emails through the Lemlist inbox. - [NeverBounce Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/neverbounce): Integrate NeverBounce to verify email deliverability in real time — classify addresses as valid, invalid, catch-all, disposable, or unknown — and check your remaining verification credits. - [Sixtyfour AI Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/sixtyfour): Find emails, phone numbers, and enrich lead or company data with contact information, social profiles, and detailed research using Sixtyfour AI. - [Wiza Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/wiza): Find, enrich, and verify B2B contact data with Wiza. Search prospects, enrich companies, reveal verified emails and phone numbers for individuals, and check your account credit balance. - [ZeroBounce Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/zerobounce): Validate email deliverability in real time — detect invalid, catch-all, spamtrap, abuse, and do-not-mail addresses — and check your remaining validation credits. ### Scheduling & Events - [Cal.com Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/cal-com): Scheduling and booking management via the Cal.com v2 API - [Calendly Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/calendly): Calendly scheduling platform integration for managing events, invitees, event types, and scheduling links. Automate meeting scheduling workflows and access scheduling data. - [Google Calendar Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/google-calendar): Manage Google Calendar events, calendars, and availability via the Google Calendar v3 REST API. - [Livestorm Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/livestorm): Video engagement platform for webinars and virtual events - [Luma Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/luma): Event management platform for creating, managing, and tracking events and guests - [Microsoft Bookings Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/microsoft-bookings): Create and manage Microsoft Bookings businesses, services, staff members, customers, and appointments via the Microsoft Graph API. ### Social Media - [Hacker News Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/hackernews): Access Hacker News content including top stories, new posts, Ask HN, Show HN, job postings, and search functionality for stories and comments. - [Hootsuite Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/hootsuite): Social media management platform for scheduling posts and managing profiles - [LinkedIn Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/linkedin): LinkedIn social networking platform for professional connections, posts, and organization management - [Pinterest Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/pinterest): Visual discovery and social media platform for managing boards, pins, and content. Create pins, organize boards, and manage visual content for marketing and inspiration. - [Product Hunt Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/product-hunt): Discover and explore tech products, topics, and community posts via the Product Hunt GraphQL API - [YouTube Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/youtube): Search YouTube videos, fetch trending videos and video details, list video categories, get channel information, channel videos and playlists, read playlist items, and retrieve video comments via the YouTube Data API v3. ### Web Search & Scraping - [Airweave Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/airweave): Search across your synced data sources using Airweave. Supports semantic search with hybrid, neural, or keyword retrieval strategies. Optionally generate AI-powered answers from search results. - [Apify Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/apify): Web scraping, automation, and data extraction platform via the Apify REST API - [Exa Search Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/exa-search): AI-powered semantic search engine for intelligent web search, content extraction, similarity matching, and answer generation - [Firecrawl Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/firecrawl): AI-powered web scraping, crawling, and search tool for extracting content from websites with advanced options for JavaScript rendering, caching, and structured data extraction. - [Jina AI Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/jina-ai): AI-powered search foundation with embeddings, reranking, web reading, search, deep research, text segmentation, and zero-shot classification capabilities. - [Linkup Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/linkup): Search the web with Linkup — retrieve up-to-date information with source attribution, returning either an AI-generated sourced answer or raw ranked search results. - [Scrape.do Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/scrape-do): Enterprise-grade web scraping API with JavaScript rendering, proxy rotation, geo-targeting, and screenshot capture. - [Serper Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/serper): Search the web with the Serper Google Search API. Supports web, news, places, and image search, returning organic results plus knowledge graph, answer box, people-also-ask, and related searches. - [Tavily Search Integration for AI Agents & Workflows](https://docs.modulex.dev/integrations/tools/tavily): AI-powered web search engine with advanced search capabilities, answer generation, and news search ## Learn ### Billing & credits - [Billing & credits overview](https://docs.modulex.dev/billing/overview): How ModuleX bills in one picture: your plan gives a monthly credit allowance, credits meter managed usage, a prepaid wallet covers overage, and a usage gate enforces it all. Managed usage costs credits; bring-your-own-key usage does not. - [Plans & pricing](https://docs.modulex.dev/billing/plans): Compare the ModuleX Free, Pro, Max, and Enterprise plans — monthly credits, rate limits, storage, team features, and what each tier costs per month and per year. - [Credits & metering](https://docs.modulex.dev/billing/credits): Exactly how ModuleX meters managed usage in credits: the 1000-credit-per-dollar unit, the per-operation cost table (run, retrieval, ingest, tool, LLM tokens), the reserve to charge to settle lifecycle, and why BYOK usage is never credited. - [Usage gating & limits](https://docs.modulex.dev/billing/usage-gating): How the ModuleX usage gate admits or denies managed work before it runs: the four denial layers (credit, quota, rate, wallet), the flat DenialEnvelope returned as 402/403/429, the run/Composer/Assistant/managed-knowledge surfaces it covers, and why plain CRUD is never gated. - [Wallet & top-ups](https://docs.modulex.dev/billing/wallet): The ModuleX prepaid wallet: balance, manual top-ups ($10–$1000), auto top-up thresholds, and the paid-only overage toggle — with request and response schemas, every error, and edge cases. - [Subscriptions & Stripe](https://docs.modulex.dev/billing/subscription-lifecycle): The ModuleX subscription lifecycle: Stripe checkout and the customer portal, plan transitions, the signature-verified Stripe webhook, lifecycle states, and the Python-SDK-only subscriptions resource. Full request/response schemas and error codes. - [Trials, grace periods & account suspension](https://docs.modulex.dev/billing/trials-dunning): How ModuleX trials work: the 7-day Pro and Max trial and who is eligible, the 30-day window for free accounts, and the 3-day grace period before a past-due account is suspended. ### Data & limits - [Data model reference](https://docs.modulex.dev/reference/data-model): The shared ModuleX data model: the core entities (workflows, runs, credentials, knowledge bases, wallets), their key JSON fields, identifier and identity conventions including the three distinct run-id identities, the foreign-key graph, and the column-name traps an SDK author must not get wrong. - [Known limitations](https://docs.modulex.dev/reference/known-limitations): Documented gaps, broken calls, and no-op behaviors in ModuleX that you should not rely on — with the supported workaround for each, sourced from verified backend, UI, and SDK research. ### Guides - [Build a workflow with AI Composer](https://docs.modulex.dev/guides/build-with-composer): A guided walkthrough: describe the workflow you want in plain English, refine it by answering the AI Composer's questions, then run it and iterate — no node-by-node building required. - [Realtime collaboration walkthrough](https://docs.modulex.dev/guides/realtime-collaboration): A hands-on walkthrough: invite a teammate to your organization, co-edit the same workflow canvas live with presence and node locks, and resolve an edit conflict the way ModuleX does it for you. ### Power using - [Power using ModuleX](https://docs.modulex.dev/power-using/overview): Go beyond the basics. Patterns, pro tips, and jump-off points that help you get more out of the ModuleX Assistant, AI Composer, workflows, integrations, and credits. - [Feature map](https://docs.modulex.dev/power-using/feature-map): Every ModuleX feature in one place — what each one does, where to use it, and the deep page that explains it. A skimmable matrix across building, AI, knowledge, integrations, collaboration, billing, and the developer API. - [Recipes](https://docs.modulex.dev/power-using/recipes): Reusable ModuleX patterns that combine the Assistant, AI Composer, workflows, knowledge, and integrations to solve real problems. Each recipe shows what it combines, when to reach for it, and where to go next. - [Optimization](https://docs.modulex.dev/power-using/optimization): Tune ModuleX workflows and usage for speed, reliability, and cost: cut credit spend, lower run latency, harden runs against transient failures, and weigh the trade-offs of bring-your-own-key against managed usage. ## API References ### Overview - [API overview & request lifecycle](https://docs.modulex.dev/api-reference/overview): How the ModuleX REST API works: the api.modulex.dev base URL, the unversioned (no /v1) routing scheme, the authenticate, run, stream request lifecycle, content types, and the one operation, three ways model with a live playground. - [Authentication](https://docs.modulex.dev/api-reference/authentication): Authenticate every ModuleX API request with an Authorization: Bearer mx_live_ API key plus the X-Organization-ID header. Full reference for headers, key format, org scope, and error responses. - [Base URLs & versioning](https://docs.modulex.dev/api-reference/environments): The ModuleX REST API base URL (https://api.modulex.dev), why there is no /v1 path segment, the trailing-slash rule, and how ModuleX versions and deprecates the API. - [Pagination](https://docs.modulex.dev/api-reference/pagination): How ModuleX list endpoints paginate — offset/page, offset/limit, and next_cursor styles — plus the SDK auto-paginators (listAll, list_all, iter_runs) and manual cursor loops, with cURL, Python, and JavaScript. - [Errors & status codes](https://docs.modulex.dev/api-reference/errors): Every ModuleX API error: the four error-envelope shapes, the full HTTP status taxonomy, which surface emits the DenialEnvelope (402/403/429), and how the SDKs map each status to a typed error class. - [Rate limiting](https://docs.modulex.dev/api-reference/rate-limiting): How ModuleX rate-limits the REST API: per-key and per-user limits, the org and run-surface limiters, the 429 response shapes (string detail, dict detail, and the flat DenialEnvelope), the X-RateLimit-* / Retry-After headers, and how to back off in the SDKs. ### SDKs - [ModuleX SDKs: JavaScript & Python overview](https://docs.modulex.dev/sdks/overview): Install, authenticate, and configure the official ModuleX JavaScript (modulex-js) and Python (modulex-python) SDKs, and learn how SDK operations map one-to-one to the REST API. - [JavaScript SDK setup & configuration](https://docs.modulex.dev/sdks/javascript): Install the modulex-js SDK, construct the Modulex client with an mx_live_ API key and X-Organization-ID, and learn how the SDK injects headers and converts camelCase to snake_case on the wire. - [Python SDK (modulex-python)](https://docs.modulex.dev/sdks/python): Install, configure, and use the async modulex-python client: the Modulex() async client, environment-variable fallbacks, Authorization Bearer auth, the Python-only subscriptions resource, typed Pydantic responses, retries, and structured billing errors. - [Streaming & human-in-the-loop in the SDKs](https://docs.modulex.dev/sdks/streaming-hitl): Consume ModuleX SSE run streams with listen() async generators, cancel them with AbortSignal or close(), and answer human-in-the-loop prompts with a UserInputResponse in the JavaScript and Python SDKs. - [SDK errors, retries & idempotency](https://docs.modulex.dev/sdks/errors-retries): The JavaScript and Python SDK error-class trees, the BillingError family, the automatic retry policy, and why the Idempotency-Key header is a no-op for run dedup. - [SDK to API parity matrix](https://docs.modulex.dev/sdks/parity): Every backend REST route mapped to its modulex-js and modulex-python method, with JS-only and Python-only gaps, naming divergences, and the routes neither SDK covers. ### Endpoints (live playground) ### Realtime - [Realtime overview & event taxonomy](https://docs.modulex.dev/realtime/overview): ModuleX has two independent realtime planes: SSE run streaming served by the REST backend, and Socket.io canvas collaboration served by a separate server. Compare transports, auth, and event taxonomies, and learn when to use which. - [SSE run streaming](https://docs.modulex.dev/realtime/sse-streaming): Stream workflow, Composer, and Assistant run events over Server-Sent Events: the data-only frame format, the full event-type taxonomy, the 15-second heartbeat, terminal markers, and the run lifecycle. - [Human-in-the-loop (HITL) resume](https://docs.modulex.dev/realtime/hitl): The complete HITL pause/resume contract for ModuleX Composer and Assistant runs: the five request kinds, the seven response kinds, the resume endpoint and SDK resume() methods, the new run_id minted on resume, and every error code. - [Socket.io collaboration events](https://docs.modulex.dev/realtime/socket-events): The complete client-to-server and server-to-client Socket.io event reference for ModuleX canvas collaboration: the handshake auth payload, every node, edge, workflow, lock, cursor, and presence event with payloads, acks, conflicts, and error codes, plus the live workflow:external-sync path. - [Presence, locks & versioning](https://docs.modulex.dev/realtime/presence-locks): The Socket.io presence, cursor, node-lock, and JSON-Patch version/conflict model behind ModuleX canvas collaboration: every event, payload, TTL, error, and edge case, plus what happens to your locks on disconnect. ## Enterprise ### Security - [Security overview](https://docs.modulex.dev/security/overview): How ModuleX secures your data, credentials, and access: one sign-in identity, API keys you can scope and revoke, credentials encrypted at rest, and an organization boundary that keeps every tenant's work separate. - [Authentication model](https://docs.modulex.dev/security/authentication): How ModuleX authenticates callers: Clerk JWTs for the web app and mx_live_ API keys (SHA-256 + pepper) for programmatic access, plus the Authorization: Bearer header forms and the Socket.io handshake auth payload. - [Organization context](https://docs.modulex.dev/security/org-context): How ModuleX scopes org-bound requests with the X-Organization-ID header: resolution order, the missing-header 400, per-request overrides in both SDKs, org-scoped API keys, and the Socket.io handshake field. - [Roles & permissions](https://docs.modulex.dev/security/roles-permissions): The ModuleX organization role model: owner and admin are the only live roles, member is retired, and which actions require owner versus admin across workflows, the AI Composer, the Assistant, schedules, knowledge, credentials, and member management. - [Data security & encryption](https://docs.modulex.dev/security/data-encryption): How ModuleX encrypts integration credentials and secrets at rest, derives per-credential keys, hashes API keys with a pepper, sources secrets from environment or Azure Key Vault, and enforces the production security checks that fail startup if keys are missing. ### Trust - [Trust & data handling](https://docs.modulex.dev/security/trust): How ModuleX handles, isolates, and retains your data: per-organization tenancy, credentials encrypted at rest, redacted logs, and an audit trail, plus where compliance details live. - [Compliance](https://docs.modulex.dev/security/compliance): ModuleX's compliance posture in plain language: the privacy laws it works under (GDPR, CCPA/CPRA), how your data is handled and retained, its stance on regulated-industry use, and how to request the certification status for your review. - [Sub-processors](https://docs.modulex.dev/security/sub-processors): The third parties ModuleX uses to deliver the service, what each one does, where its access is limited, and how ModuleX tells you when the list changes. ### Enterprise - [Enterprise capabilities](https://docs.modulex.dev/security/enterprise): What ModuleX offers larger teams: single sign-on, self-hosted deployment, per-seat licensing, custom limits, and dedicated support — and how to engage sales. - [ModuleX for enterprise](https://docs.modulex.dev/enterprise/overview): ModuleX scales from one person to a whole organization: realtime team collaboration, owner/admin governance, org-scoped credits and billing, and BYOK or managed usage. Built on the same platform your team already knows. - [ModuleX Enterprise](https://docs.modulex.dev/enterprise/branding): ModuleX Enterprise is the top tier of ModuleX — the same AI workflow orchestration platform, with self-hosting, SSO and SAML, custom limits, and dedicated support. Here is how the Enterprise edition is positioned and named, and how it differs from Free, Pro, and Max. - [Deployment & SSO](https://docs.modulex.dev/enterprise/deployment-sso): Single sign-on through Clerk and self-hosted vs. ModuleX-managed deployment for Enterprise: the entitlement flags that unlock them, just-in-time user provisioning, the production secrets a self-host requires, and the startup security gate. - [Contact sales](https://docs.modulex.dev/enterprise/contact-sales): Talk to the ModuleX team about an Enterprise plan — when to reach out, what to prepare, and how to start the conversation. ## Resources ### Glossary - [ModuleX glossary of terms](https://docs.modulex.dev/reference/glossary): The canonical ModuleX terminology reference: definitions for credits, the DenialEnvelope, BYOK vs managed usage, knowledge bases, the nine node types, HITL, the three run-id identities, and the deprecated names to avoid. ### Changelog - [Changelog](https://docs.modulex.dev/reference/changelog): Release notes for ModuleX and these docs, newest first. Each entry summarizes what changed, with breaking changes called out clearly. No entries yet — this page is populated at launch. ### Status - [System status](https://docs.modulex.dev/reference/status): Check whether ModuleX is up: the public GET /system/health liveness probe on the REST backend, the GET /health probe on the realtime collaboration server, the API-key-gated health diagnostics, and where to watch live service status. ### Guides & reference - [Run a workflow (REST + SDK)](https://docs.modulex.dev/guides/run-a-workflow): Authenticate, trigger a workflow run, and stream its result over SSE with cURL, the Python SDK, and the JavaScript SDK — including the live billing-gate responses. - [Connect an integration](https://docs.modulex.dev/guides/connect-an-integration): Connect a third-party service to ModuleX with OAuth or your own key, then call its tool from a workflow. A step-by-step guide for connecting GitHub, Slack, and 175 other integrations. - [Build a RAG knowledge base](https://docs.modulex.dev/guides/build-a-knowledge-base): Create a knowledge base (managed modulexdb or BYOK), ingest documents through the parse-chunk-embed pipeline, and query it with vector, hybrid, or RAG-context search over the REST API and the JavaScript and Python SDKs. - [Schedule a workflow](https://docs.modulex.dev/guides/schedule-a-workflow): Run a deployed ModuleX workflow automatically on a cron schedule: deploy, create the schedule, write a cron expression, and monitor scheduled runs — with cURL, Python, and JavaScript and full parameter and error coverage. ### Contributing - [Contributing](https://docs.modulex.dev/resources/contributing): Ways to contribute to ModuleX — build and submit a new integration, improve the docs, report bugs, and share feedback — plus the community expectations everyone is asked to follow. ### Blog - [Blog](https://docs.modulex.dev/resources/blog): The ModuleX blog: deep dives, guides, and announcements from the team. This page is an index into the blog on the ModuleX website — read the latest posts and learn where to look for the why behind each release. ## Help ### Get going - [Getting started — help](https://docs.modulex.dev/help/getting-started): Answers for people brand new to ModuleX: how to sign up, create your first API key, try the product, choose between the app and the API, and the free plan. - [Account & access — help](https://docs.modulex.dev/help/account-access): How to sign in, switch organizations, understand roles, and recover access in ModuleX. - [Billing, plans & credits — help](https://docs.modulex.dev/help/billing-credits): How ModuleX bills: plans, what a credit is, what uses credits, and what happens when you run out. Quick answers for managing cost and usage. ### Using ModuleX - [Workflows & runs — help](https://docs.modulex.dev/help/workflows-runs): Answers to common questions about building and running workflows in ModuleX: the nine node types, passing data with node references, pausing for input, cancelling a run, and watching a run live. - [AI Composer & Assistant — help](https://docs.modulex.dev/help/composer-assistant): Quick answers about ModuleX's two AI helpers: the AI Composer that builds workflows from plain English, and the Assistant that uses your connected tools step by step — including who can run them and what to do when one pauses. - [Knowledge (RAG) — help](https://docs.modulex.dev/help/knowledge-rag): Quick answers for using your own documents in ModuleX: set up a knowledge base, search it from a workflow, what it costs, indexing time, file types and limits, and deleting documents. - [Credentials & integrations — help](https://docs.modulex.dev/help/credentials-integrations): Quick answers for connecting external services to ModuleX: add an OAuth or API-key credential, browse the 175 integrations, find a tool, bring your own keys (BYOK), how credentials are encrypted, fix a broken OAuth connection, and build your own integration. - [Realtime collaboration — help](https://docs.modulex.dev/help/realtime-collaboration): Answers to common questions about co-editing a ModuleX workflow with your team: live cursors and presence, edit conflicts and how to re-sync, locking a node, and what happens to your locks when you disconnect. - [API & SDKs — help](https://docs.modulex.dev/help/api-sdks): Use ModuleX from your own code: the JavaScript and Python SDKs, how to authenticate, the base URL, streaming run output, and rate limits. ### Troubleshooting - [Errors & troubleshooting — help](https://docs.modulex.dev/help/errors-troubleshooting): What the common ModuleX error codes mean — 401, 402, 403, 404, 429, and 500 — and how to fix them, plus how to debug a failed node or tool. - [Known limitations — help](https://docs.modulex.dev/help/known-limitations): Plain-language answers about the things to know in ModuleX today: deleting one node at a time, templates not yet available, reconnecting OAuth, owner/admin-only features, the annual price at checkout, and empty install extras. - [Getting help — Help](https://docs.modulex.dev/help/getting-help): Reach a human at ModuleX: how to contact support, what to include in your message, where to find the community, and how to check whether the platform is up.