← Registry

Game Development

playeros.ai

Manages players and segments in a game or app property.

2 endpoints25 known toolsFirst detected June 9, 2026Last detected September 6, 2026

ENDPOINT 1

https://api.playeros.ai/api/mcp

No auth detected

MCP server metadata

Name
playeros
Version
1.0.0
Capabilities
toolsresources
Server instructions

Authenticate with a PlayerOS property-scoped API key via 'X-Api-Key: pk_…' or 'Authorization: Bearer pk_…'. Tools run under that key's property and read/write scopes. Create a key in Settings → API Keys at https://playeros.ai.

Known tools 25

playeros_list_players

List or search players in your property.

Inferred read-only
playeros_get_player

Retrieve a single player by their PlayerOS id (UUID).

Inferred read-only
playeros_create_player

Create a player in your property.

Potential side effects
playeros_update_player

Update fields on an existing player.

Potential side effects
playeros_preview_segment

Preview how many players match a set of segment conditions (no segment is saved).

Inferred read-only
playeros_list_campaigns

List campaigns in your property, most recent first.

Inferred read-only
playeros_get_campaign

Retrieve a single campaign by id (UUID).

Inferred read-only
playeros_create_campaign

Create a draft campaign in your property.

Potential side effects
playeros_update_campaign

Update fields on a campaign (e.g.

Potential side effects
playeros_send_campaign

Send (enqueue) an email campaign to its filtered recipients.

Potential side effects
playeros_send_sms_campaign

Send an SMS campaign via Telnyx.

Potential side effects
playeros_list_journeys

List automation journeys (visual campaign flows) in your property.

Inferred read-only
playeros_get_journey

Retrieve a single journey by id (UUID).

Inferred read-only
playeros_create_journey

Create a draft journey in your property.

Potential side effects
playeros_publish_journey

Publish a journey version (activates it; clones draft nodes/edges to a published version).

Potential side effects
playeros_list_games

List interactive games (spin wheel, scratch card, trivia, etc.) in your property.

Inferred read-only
playeros_list_inbox_messages

List Player Inbox messages in your property.

Inferred read-only
playeros_inbox_broadcast

Send a Player Inbox broadcast to all or segmented inbox users.

Potential side effects
playeros_compliance_check

Pre-send compliance check for one or more phone numbers against the suppression list, DNC list, and active consent.

Potential side effects
playeros_record_consent

Record a TCPA consent event for a player on a channel, with full audit trail.

Inferred read-only
playeros_revoke_consent

Revoke consent for a player on a channel.

Inferred read-only
playeros_consent_history

Get the complete consent timeline for a player across all channels.

Inferred read-only
playeros_dnc_add

Add a phone or email to the Do-Not-Contact list.

Potential side effects
playeros_dnc_list

List Do-Not-Contact entries for your property.

Inferred read-only
playeros_data_export

Export all data held for a player (CCPA/GDPR subject access request) across players, consent, sends, game plays, inbox, journeys, and suppression lists.

Inferred read-only

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.playeros]
url = "https://api.playeros.ai/api/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "playeros": {
      "type": "http",
      "url": "https://api.playeros.ai/api/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: playeros
Remote MCP URL: https://api.playeros.ai/api/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "playeros": {
      "url": "https://api.playeros.ai/api/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "playeros": {
      "type": "http",
      "url": "https://api.playeros.ai/api/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "playeros",
  "transport": "streamable-http",
  "url": "https://api.playeros.ai/api/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

ENDPOINT 2

https://api.playeros.ai/api/mcp%60](https://api.playeros.ai/api/mcp

Auth required

Known tools 0

No tool metadata was available in the registry cache.

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.playeros-ai]
url = "https://api.playeros.ai/api/mcp%60](https://api.playeros.ai/api/mcp"
enabled = true
bearer_token_env_var = "MCP_BEARER_TOKEN"

Authentication is required. Replace the placeholder locally and never commit a secret.

Claude Code

.mcp.json

{
  "mcpServers": {
    "playeros-ai": {
      "type": "http",
      "url": "https://api.playeros.ai/api/mcp%60](https://api.playeros.ai/api/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_BEARER_TOKEN"
      }
    }
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Claude Desktop

Settings → Connectors → Add custom connector

Name: playeros-ai
Remote MCP URL: https://api.playeros.ai/api/mcp%60](https://api.playeros.ai/api/mcp

Add the URL as a custom connector, then complete its supported authorization flow. Claude Desktop remote connectors are configured in the UI.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "playeros-ai": {
      "url": "https://api.playeros.ai/api/mcp%60](https://api.playeros.ai/api/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_BEARER_TOKEN"
      }
    }
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Visual Studio Code

.vscode/mcp.json

{
  "servers": {
    "playeros-ai": {
      "type": "http",
      "url": "https://api.playeros.ai/api/mcp%60](https://api.playeros.ai/api/mcp",
      "headers": {
        "Authorization": "Bearer ${input:mcp-token}"
      }
    }
  },
  "inputs": [
    {
      "type": "promptString",
      "id": "mcp-token",
      "description": "playeros-ai bearer token",
      "password": true
    }
  ]
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Generic MCP

Client-specific MCP configuration

{
  "name": "playeros-ai",
  "transport": "streamable-http",
  "url": "https://api.playeros.ai/api/mcp%60](https://api.playeros.ai/api/mcp",
  "headers": {
    "Authorization": "Bearer YOUR_BEARER_TOKEN"
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

TRUST AND VERIFICATION EVIDENCE

Trust Data Available

BuiltWith Trust API v2 evidence for playeros.ai was fetched 2026-07-26T06:43:25.087Z and is being refreshed.

Trust status RestrictedContent

playeros.ai is assessed as RestrictedContent: Domain runs gambling-related technology.

Indexed

Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.