Chess.com · Capability

Chess.com Published Data API - Clubs

Club profile, members by activity level, and team match list.

Chess.com Published Data API - Clubs is a Naftiko capability published by Chess.com, one of 9 capabilities the APIs.io network indexes for this provider. It bundles 3 operations across the GET method rooted at /v1/club/{…}.

The capability includes 3 read-only operations. Lead operation: Get Club Profile. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Chess.com and Clubs.

Run with Naftiko Chess.comClubs

What You Can Do

GET
Getclub — Get Club Profile
/v1/club/{url-ID}
GET
Getclubmembers — Get Club Members
/v1/club/{url-ID}/members
GET
Getclubmatches — Get Club Matches
/v1/club/{url-ID}/matches

MCP Tools

chesscom-get-club

Get Club Profile

read-only idempotent
chesscom-get-club-members

Get Club Members

read-only idempotent
chesscom-get-club-matches

Get Club Matches

read-only idempotent

Capability Spec

clubs-clubs.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Chess.com Published Data API - Clubs
  description: Club profile, members by activity level, and team match list.
  tags:
  - Chess.com
  - Clubs
  created: '2026-05-25'
  modified: '2026-05-25'
binds: []
capability:
  consumes:
  - type: http
    namespace: clubs-clubs
    baseUri: https://api.chess.com/pub
    description: Chess.com Clubs surface.
    resources:
    - name: club
      path: /club/{url-ID}
      operations:
      - name: getclub
        method: GET
        description: Get Club Profile
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: club-members
      path: /club/{url-ID}/members
      operations:
      - name: getclubmembers
        method: GET
        description: Get Club Members
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: club-matches
      path: /club/{url-ID}/matches
      operations:
      - name: getclubmatches
        method: GET
        description: Get Club Matches
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: none
  exposes:
  - type: rest
    namespace: clubs-clubs-rest
    port: 8080
    description: REST adapter for Chess.com Clubs.
    resources:
    - path: /v1/club/{url-ID}
      name: club
      operations:
      - method: GET
        name: getclub
        description: Get Club Profile
        call: clubs-clubs.getclub
    - path: /v1/club/{url-ID}/members
      name: club-members
      operations:
      - method: GET
        name: getclubmembers
        description: Get Club Members
        call: clubs-clubs.getclubmembers
    - path: /v1/club/{url-ID}/matches
      name: club-matches
      operations:
      - method: GET
        name: getclubmatches
        description: Get Club Matches
        call: clubs-clubs.getclubmatches
  - type: mcp
    namespace: clubs-clubs-mcp
    port: 9090
    transport: http
    description: MCP adapter for Chess.com Clubs.
    tools:
    - name: chesscom-get-club
      description: Get Club Profile
      hints: {readOnly: true, destructive: false, idempotent: true}
      call: clubs-clubs.getclub
    - name: chesscom-get-club-members
      description: Get Club Members
      hints: {readOnly: true, destructive: false, idempotent: true}
      call: clubs-clubs.getclubmembers
    - name: chesscom-get-club-matches
      description: Get Club Matches
      hints: {readOnly: true, destructive: false, idempotent: true}
      call: clubs-clubs.getclubmatches