tascan_register_agent
ActiveTool of TaScan
declared in 1.3.0
Register a new AI agent in the agent registry. The agent will appear in tascan_list_agents and can receive dispatched tasks. Self-registration for AI agents joining the TaScan network.
Parameters schema
{
"type": "object",
"required": [
"id",
"name",
"type",
"inbox_id",
"capabilities"
],
"properties": {
"id": {
"type": "string",
"description": "Unique agent ID (e.g. \"my-agent-1\")"
},
"name": {
"type": "string",
"description": "Display name (e.g. \"Research Bot\")"
},
"type": {
"enum": [
"local",
"cloud",
"hybrid"
],
"type": "string",
"description": "Agent type"
},
"model": {
"type": "string",
"description": "Model powering this agent (e.g. \"claude-sonnet-4-6\")"
},
"inbox_id": {
"type": "string",
"description": "Task list ID this agent monitors for new tasks"
},
"location": {
"type": "string",
"description": "Where the agent runs (e.g. \"AWS us-east-1\")"
},
"worker_id": {
"type": "string",
"description": "TaScan worker ID for this agent"
},
"description": {
"type": "string",
"description": "What this agent does"
},
"capabilities": {
"type": "array",
"items": {
"type": "string"
},
"description": "Task type prefixes this agent handles (e.g. [\"RESEARCH\", \"WRITE\"])"
}
}
}No endpoints wrapped at confidence ≥ 0.50.
Parent server
TaScan
https://github.com/snowbikemike/tascan-mcp
1/7 registries