Extend your private MCP server with connectors.
A plugin is a connector to one of your systems. Install the MongoDB plugin and your AI can query your database. Install the Zoho CRM plugin and it can read and update your records. Each one adds real tools that show up instantly in Claude, Cursor, ChatGPT, and any connected MCP client.
Vikas Singla
Vikas Singla
Vikas Singla
Vikas Singla
Vikas Singla
Vikas Singla
Vikas Singla
Vikas Singla
Vikas Singla
Vikas Singla
Vikas Singla
Vikas Singla
Vikas Singla
Vikas Singla
Vikas Singla
Vikas Singla
No plugins match your search.
Installable plugins ship a manifest.json at the package root. The desktop app validates protocol_version, optional digest, and registers MCP tools as {plugin_slug}_{tool_name}.
{
"plugin_id": "acme-connector",
"name": "Acme Connector",
"version": "1.0.0",
"protocol_version": "1.0.0",
"runtime": "native",
"entry": "plugin.exe",
"tools": [
{
"name": "ping",
"title": "Ping",
"description": "Verify the plugin process is running.",
"permission": "read"
}
]
}
| Field | Required | Description |
|---|---|---|
plugin_id | Yes | Stable slug; install directory and MCP namespacing |
name | No | Display name |
version | Yes | Semver |
protocol_version | Yes | Plugin wire protocol (currently 1.0.0) |
runtime | No | native or node |
entry | No | Executable or script relative to package root |
digest | No | SHA-256 of package contents when signing is enabled |
tools | No | MCP tools exposed by the plugin |
tools[].permission | Yes | read, write, or admin |
MCP tool naming: acme-connector + ping → acme_connector_ping.