register_agent
Register yourself as an agent in CoordMCP to establish your identity for multi-agent coordination, enabling context tracking, file locking, and change attribution across sessions.
Instructions
MANDATORY STEP 2: Register yourself as an agent in the CoordMCP system.
CRITICAL: You MUST call this tool AFTER create_project() but BEFORE starting any work. This establishes your identity for multi-agent coordination and enables:
Context tracking across sessions
File locking to prevent conflicts
Change attribution
Session history and logging
WHEN TO USE:
At the start of EVERY new session or conversation
When beginning work on a new project
When you haven't yet registered in the current session
After restarting or reconnecting to CoordMCP
WORKFLOW:
create_project() - Create project
register_agent() - Register yourself (THIS STEP)
start_context() - Start working context
Begin coding
SAVE THE AGENT_ID: You'll need it for ALL subsequent operations.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| version | No | Version identifier (optional) - e.g., "1.0.0" | 1.0.0 |
| agent_name | Yes | Your agent name (required) - e.g., "OpenCodeDev", "ClaudeCoder", "CursorAI" | |
| agent_type | Yes | Type of agent (required) - "opencode", "cursor", "claude_code", or "custom" | |
| capabilities | No | List of your skills/capabilities (optional but recommended) - e.g., ["python", "react", "database"] |