ai-collaboration-mcp-server

0.3.0 • Public • Published

ai-collaboration-mcp-server

Model Context Protocol (MCP) server for AI collaboration between Claude Code and Cursor/Windsurf with license management

Features

  • 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

Installation

# Install globally
npm install -g ai-collaboration-mcp-server

# Or use directly with npx
npx ai-collaboration-mcp-server

Quick Start

# 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

Available Commands

  • 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

Example Usage

// 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
});

Documentation

For full documentation, visit the GitHub repository.

License

This package is provided to customers upon purchase of a license. All usage is subject to our Terms of Service.

Package Sidebar

Install

npm i ai-collaboration-mcp-server

Weekly Downloads

9

Version

0.3.0

License

MIT

Unpacked Size

227 kB

Total Files

31

Last publish

Collaborators

  • will_m59