n8n-nodes-mightycall
v1.0.2
Published
n8n node for MightyCall phone system integration
Maintainers
Readme
n8n-nodes-mightycall
Community node package for integrating n8n with the MightyCall API.
This repository ships one custom n8n node, one credential type, compiled runtime files under dist/, and documentation for the live workflow compatibility contract.
Install | Credentials | Repository Structure | Build Semantics | Runtime Semantics | Compatibility Contract | Operations | Validation
Install
n8n Community Nodes
In n8n:
- Go to Settings > Community Nodes.
- Select Install a community node.
- Enter
n8n-nodes-mightycall. - Install and restart n8n.
Manual Install
npm install n8n-nodes-mightycallFor repository development:
npm install
npm run buildCredentials
Credential type: mightyCallApi
Defined in credentials/MightyCallApi.credentials.ts.
| Field | Purpose | | --- | --- | | Account Type | Standard or Contact Center; controls API base URL and route casing | | API Key | MightyCall API key | | Authentication Method | User Key or Extension Number | | User Key | Secret key used as client_secret when selected | | Extension Number | Extension used as client_secret when selected |
Repository Structure
Important tracked files and runtime outputs:
README.mdLICENSEpackage.jsonpackage-lock.jsontsconfig.jsongulpfile.jscredentials/MightyCallApi.credentials.tscredentials/mightycall.svgnodes/MightyCall.node.tsnodes/README.mdnodes/mightycall.svgdist/credentials/MightyCallApi.credentials.jsdist/credentials/MightyCallApi.credentials.d.tsdist/credentials/mightycall.svgdist/nodes/MightyCall.node.jsdist/nodes/MightyCall.node.d.tsdist/nodes/mightycall.svgdocs/BUILD_AND_RELEASE.mddocs/WORKFLOW_COMPATIBILITY.md
Build Semantics
Build command:
npm run buildCurrent build script:
node ./node_modules/typescript/bin/tsc && node ./node_modules/gulp/bin/gulp.js build:icons && node ./node_modules/gulp/bin/gulp.js build:node-iconsDevelopment watch script:
node ./node_modules/typescript/bin/tsc --watchThe scripts call package entrypoints directly instead of relying on node_modules/.bin shims where possible. This keeps builds reliable on mounted shares where npm bin symlinks can be materialized as plain files.
Package manifest semantics:
| Field | Current value |
| --- | --- |
| Package | n8n-nodes-mightycall |
| Runtime node entry | dist/nodes/MightyCall.node.js |
| Runtime credential entry | dist/credentials/MightyCallApi.credentials.js |
| Source node | nodes/MightyCall.node.ts |
| Source credential | credentials/MightyCallApi.credentials.ts |
| Icon | file:mightycall.svg |
More detail: Build and Release.
Runtime Semantics
The node executes one n8n input item at a time.
- Reads account type, API key, and selected client secret from mightyCallApi credentials.
- Uses https://api.mightycall.com/v4 for standard accounts and https://ccapi.mightycall.com/v4 for Contact Center accounts.
- Requests an OAuth access token from
/auth/tokenusingclient_credentials. - Sends API requests with
Authorization: Bearer <token>; some endpoints also requirex-api-key. - Uses the Swagger-documented route family for each resource. Communication and Interaction are standard-host routes that require a tenant with Contact Center features; Contact Center Contact supports the matching standard-host
/contactCenter/...and ccapi/contactcenter/...route casing.
Compatibility Contract
This node is used by saved workflows in the live n8n instance. Backward compatibility includes node identity, declared versions, resource values, operation values, parameter names, icon loading, and editor hydration.
| Field | Value |
| --- | --- |
| Display name | MightyCall |
| Internal node name | mightyCall |
| Runtime workflow type | n8n-nodes-mightycall.mightyCall |
| Declared versions | [1, 2, 2.1, 3, 10] |
| Credential type | mightyCallApi |
| Saved workflow usage | 11 saved MightyCall nodes currently use typeVersion 10 in the live n8n database. |
Do not change these values without a saved-workflow migration and browser/editor validation.
More detail: Workflow Compatibility.
Operations
The node currently exposes 14 resources and 77 operation values.
| Resource Display | Resource Value | Operations |
| --- | --- | --- |
| Call | call | getAll, getActive, getById, make, hangUp |
| Contact | contact | getAll, getById, create, update, patch, delete, deleteBulk, getTags, getLimits, addChannel, updateChannel, patchChannel, deleteChannel, addTags |
| Contact Center Contact | contactCenterContact | getAll, getById, createBrief, createFull, update, patch, delete, import, exportCsv, searchAuto, deleteByTag, removeCrmInfo, deleteInternal, markMessagesRead, addChannel, updateChannel, patchChannel, deleteChannel |
| Journal | journal | getAll, getCount, getById, deleteMessages, addComment, deleteComment, deleteVoicemail, setWorkflowState, setFlags, removeFlags, getBlockListCount, getVipListCount, addToBlockList, removeFromBlockList, restoreMessage, getMessageAttachments |
| Voicemail | voicemail | getAll, get |
| Business Number | businessNumber | getAll, getWithOptions, get, delete |
| User | user | getStatus, setStatus, getInfo |
| Message | message | send, sendContactCenter, getAll |
| Team | team | get |
| Profile | profile | get, getByExtension, getStatus, setStatus |
| Ping | ping | ping |
| API Request | apiRequest | make |
| Communication (Contact Center Only) | communication | getAll, addComment, deleteComment, deleteVoicemails |
| Interaction (Contact Center Only) | interaction | getAll |
Service Notes
- Communication and Interaction are Contact Center feature routes in the standard Swagger host; configure the credential as Standard Account for those resources unless MightyCall documents otherwise for your tenant.
- Do not merge standard and Contact Center base URLs; accountType selects the default API host, while route-specific operations preserve the documented path casing.
- API Request is an authenticated escape hatch under
/v4/api; the same accountType switch selects the standard or Contact Center host. message/getAllis implemented throughGET /journal/requestswithtype=Messageandstate=Message, because MightyCall does not expose a dedicatedGET /messagesroute in the official Swagger.- Legacy saved workflow parameters
contactDataandfilters.date_from/filters.date_toare preserved for existing workflows. - Several write operations mutate calls, contacts, messages, journal flags, and workflow state; validate editor hydration before live execution.
Validation
Minimum local validation:
npm run buildMinimum live validation after deployment:
- Confirm n8n health is green.
- Confirm n8n is loading the intended package commit.
- Confirm the public icon route returns SVG.
- Query saved workflows for
n8n-nodes-mightycall.mightyCallnodes. - Validate saved
typeVersionvalues against declared versions. - Validate saved
resourceandoperationvalues against current option lists. - Open representative workflows in the n8n editor and verify icon, subtitle, resource, operation, and required fields.
Do not skip browser/editor validation after large node builds.
Related Docs
- Build and Release
- Workflow Compatibility
- Node-local notes
- GitHub repository
- n8n community nodes documentation
License
See the repository license file.
