diff --git a/.cursor-plugin/marketplace.json b/.cursor-plugin/marketplace.json index 48d8c26..3bffdbe 100644 --- a/.cursor-plugin/marketplace.json +++ b/.cursor-plugin/marketplace.json @@ -78,6 +78,11 @@ "source": "third_party/gmail", "description": "Connect to Gmail via Google's remote MCP server — search, read, draft, label, and manage email." }, + { + "name": "kaicalls", + "source": "third_party/kaicalls", + "description": "Connect to KaiCalls for AI phone agents, call review, and approved calling workflows." + }, { "name": "google-drive", "source": "third_party/google-drive", diff --git a/README.md b/README.md index 1a7c3b0..8fbbd9a 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,7 @@ Official Cursor plugins for popular developer tools, frameworks, and SaaS produc | `orchestrate` | [Orchestrate](orchestrate/) | Cursor | Developer Tools | Fan large tasks out across parallel cloud agents with planners, workers, verifiers, and structured handoffs. | | `pstack` | [pstack](pstack/) | Lauren Tan | Developer Tools | if you want to go fast, go deep first. pstack helps you write less, but higher quality code. rigorous agent workflows you can parallelize with confidence. | | `gmail` | [Gmail](third_party/gmail/) | Cursor | Productivity | Connect to Gmail via Google's remote MCP server — search, read, draft, label, and manage email. | +| `kaicalls` | [KaiCalls](third_party/kaicalls/) | KaiCalls | Productivity | Connect to KaiCalls for AI phone agents, call review, and approved calling workflows. | | `google-drive` | [Google Drive](third_party/google-drive/) | Cursor | Productivity | Connect to Google Drive via Google's remote MCP server — search, read, create, share, and manage files. | | `google-calendar` | [Google Calendar](third_party/google-calendar/) | Cursor | Productivity | Connect to Google Calendar via Google's remote MCP server — list calendars, search events, and create or update meetings. | | `gong` | [Gong](third_party/gong/) | Cursor | Integrations | Gong MCP integration for revenue intelligence — account summaries, deal insights, and call briefs. | diff --git a/third_party/kaicalls/.cursor-plugin/plugin.json b/third_party/kaicalls/.cursor-plugin/plugin.json new file mode 100644 index 0000000..3b26fce --- /dev/null +++ b/third_party/kaicalls/.cursor-plugin/plugin.json @@ -0,0 +1,32 @@ +{ + "name": "kaicalls", + "displayName": "KaiCalls", + "version": "1.0.0", + "minClientVersions": { + "cursor": "3.13.0" + }, + "description": "Connect to KaiCalls for AI phone agents, call review, and approved calling workflows.", + "author": { + "name": "KaiCalls", + "email": "support@kaicalls.com" + }, + "homepage": "https://www.kaicalls.com/docs/api", + "repository": "https://github.com/KaiCalls/kaicalls-plugin", + "license": "MIT", + "logo": "assets/logo.svg", + "keywords": [ + "kaicalls", + "voice-ai", + "phone-calls", + "mcp", + "agents" + ], + "category": "productivity", + "tags": [ + "voice-ai", + "phone-calls", + "call-review", + "mcp" + ], + "mcpServers": "./mcp.json" +} diff --git a/third_party/kaicalls/CHANGELOG.md b/third_party/kaicalls/CHANGELOG.md new file mode 100644 index 0000000..e22fe78 --- /dev/null +++ b/third_party/kaicalls/CHANGELOG.md @@ -0,0 +1,5 @@ +# Changelog + +## 1.0.0 + +- Initial Cursor Marketplace release with the hosted KaiCalls MCP connector. diff --git a/third_party/kaicalls/LICENSE b/third_party/kaicalls/LICENSE new file mode 100644 index 0000000..d125f70 --- /dev/null +++ b/third_party/kaicalls/LICENSE @@ -0,0 +1,9 @@ +MIT License + +Copyright (c) 2026 KaiCalls + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/third_party/kaicalls/README.md b/third_party/kaicalls/README.md new file mode 100644 index 0000000..b787c0a --- /dev/null +++ b/third_party/kaicalls/README.md @@ -0,0 +1,14 @@ +# KaiCalls + +KaiCalls gives AI agents a phone. This Cursor plugin connects to the hosted KaiCalls MCP server for AI phone-agent workflows, recent-call review, transcripts, and approved outbound calls. + +## Setup + +Install the plugin, then authenticate your KaiCalls account when prompted. Start with a read-only action such as listing agents or recent calls before attempting any write action. + +Outbound calls are real external actions. Confirm the business, agent, recipient, phone number, purpose, and expected outcome before placing a call. + +- [KaiCalls](https://www.kaicalls.com) +- [API documentation](https://www.kaicalls.com/docs/api) +- [Privacy policy](https://www.kaicalls.com/privacy-policy) +- [Terms of service](https://www.kaicalls.com/terms-of-service) diff --git a/third_party/kaicalls/assets/logo.svg b/third_party/kaicalls/assets/logo.svg new file mode 100644 index 0000000..1f84619 --- /dev/null +++ b/third_party/kaicalls/assets/logo.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/third_party/kaicalls/mcp.json b/third_party/kaicalls/mcp.json new file mode 100644 index 0000000..1b0cc88 --- /dev/null +++ b/third_party/kaicalls/mcp.json @@ -0,0 +1,8 @@ +{ + "mcpServers": { + "kaicalls": { + "type": "http", + "url": "https://www.kaicalls.com/api/mcp" + } + } +}