Official plugin marketplace by Datasynx AI for Claude Code. Install plugins — including slash commands, hooks, sub-agents, and MCP servers — with a single command.
# 1. Add this marketplace
/plugin marketplace add datasynx/claude-plugins
# 2. Install a plugin (syntax: <plugin>@<marketplace>)
/plugin install shadowing@datasynxOr browse and install interactively with /plugin.
| Plugin | Description |
|---|---|
shadowing |
Observe your work, generate anonymized SOPs — task tracking, hooks and MCP tools, fully local. |
Plugins ship their own MCP server definition (in .mcp.json), and Claude Code
registers it automatically on install — no manual MCP configuration needed:
{
"mcpServers": {
"shadowing": {
"command": "node",
"args": ["${CLAUDE_PLUGIN_ROOT}/server/index.js"]
}
}
}${CLAUDE_PLUGIN_ROOT} is replaced with the plugin's install path at load time.
Run /mcp to check server status and the tools they expose.
| Action | Command |
|---|---|
| Update marketplace | /plugin marketplace update datasynx |
| Disable / enable plugin | /plugin disable <name>@datasynx · /plugin enable <name>@datasynx |
| Uninstall plugin | /plugin uninstall <name>@datasynx |
| Check MCP servers | /mcp |
Add an entry to the plugins array in
.claude-plugin/marketplace.json:
{
"name": "my-plugin",
"description": "What the plugin does.",
"source": {
"source": "git-subdir",
"url": "https://github.com/datasynx/my-plugin.git",
"path": "plugin"
}
}See the Claude Code docs for the full plugin structure.
Maintained by Datasynx AI · info@datasynx.de