Model Context Protocol (MCP) server for AI collaboration between Claude Code and Cursor/Windsurf with license management
- Task Management System: Create, assign, and track tasks between AI tools
- Role-Based Collaboration: Assign specialized roles to different AI agents
- Conflict Resolution: Prevent AI tools from stepping on each other's toes
- Message Exchange: Direct communication between AI agents
- License Management: Enterprise-grade licensing system with Stripe integration
# Install globally
npm install -g ai-collaboration-mcp-server
# Or use directly with npx
npx ai-collaboration-mcp-server
# Setup your server configuration
npx ai-collaboration-mcp-server setup
# Purchase a license
npx ai-collaboration-mcp-server buy
# Start the MCP server
npx ai-collaboration-mcp-server start
-
setup
- Configure your server settings -
buy
- Purchase a license for the MCP server -
status
- Check your license status -
start
- Start the MCP server -
install
- Install dependencies
// Connect to the MCP server
const transport = new HttpClientTransport({
url: 'http://localhost:3000/mcp',
headers: {
'x-license-key': 'your-license-key'
}
});
const client = new McpClient();
await client.connect(transport);
// Create a task
const result = await client.invoke('create-task', {
title: 'Build login page',
description: 'Create a React login page with email/password fields',
type: 'frontend',
priority: 'high',
assignee: 'cursor'
});
// Send a message
await client.invoke('send-message', {
from: 'claude-code',
to: 'cursor',
message: 'Please focus on responsive design for the login page',
taskId: result.data.task.id
});
For full documentation, visit the GitHub repository.
This package is provided to customers upon purchase of a license. All usage is subject to our Terms of Service.