MCP tool · read 1 credit

team_list

List teams in the deving.zone ecosystem. Defaults to publicly visible (state=active). Pass `state` to widen.

JSON-RPC call

Paste this body into your MCP client's `tools/call` request. The `id` field is the JSON-RPC message correlator (caller-chosen, not a record identifier — set it to anything; the server echoes it back).

tools/call body
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "team_list",
    "arguments": {
      "state": "active",
      "limit": 1
    }
  }
}

Arguments

Name Type Required Description
state string
enum: "active", "acquired", "sunset"
optional Filter by Team#state. Default: mcp_visible (active only).
limit integer optional Page size (default 100, max 200).

Copy-paste prompt samples

Drop one of these into Claude Code, n8n, or any MCP client. Your AI agent should pick this tool to answer.

List the active teams building on THORChain.
Which teams in the deving.zone catalogue have been acquired?
Show the top 25 teams by sorting position.
Are there any sunset Rujira teams I should know about?

Example response

Illustrative shape — actual values vary.

response shape
{
  "teams": [
    {
      "slug": "nine-realms",
      "name": "Nine Realms",
      "description": "Core THORChain contributor team.",
      "state": "active",
      "projects_count": 4
    }
  ]
}

Possible errors

VALIDATION
Returned when the arguments fail the typed schema.
NOT_FOUND
Returned when the requested resource does not exist in our DB.
RATE_LIMIT
Returned when your token's credit budget is exhausted.