← point.vote

INDIVIDUAL MCP TOOL

join_room

Join a room.

point.votenone authenticationAvailability not checked

Input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent endpoint

point.vote

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.point-vote]
url = "https://point.vote/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "point-vote": {
      "type": "http",
      "url": "https://point.vote/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: point-vote
Remote MCP URL: https://point.vote/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": {
    "point-vote": {
      "url": "https://point.vote/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "point-vote": {
      "type": "http",
      "url": "https://point.vote/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "point-vote",
  "transport": "streamable-http",
  "url": "https://point.vote/mcp"
}
MCP Inspector

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

Related tools

  • cast_vote — Cast (or change) your blind vote for the current round.
  • create_room — Create an ephemeral voting room.
  • get_room — Current room state.
  • reveal — Reveal the current round now (any participant may).
  • settle — Record the value the room agreed on after discussion.
  • start_round — Archive the revealed round and open the next one — the re-vote half of the Delphi loop.
  • wait_for_reveal — Block until the current round is revealed or the timeout passes, then return room state.