← immersivecommons.com

INDIVIDUAL MCP TOOL

ic_headsets_get_my_lend

Returns the calling user's currently-active PICO lend, or null if they have none.

immersivecommons.comnone 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

immersivecommons.com

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.immersive-commons-floor10]
url = "https://www.immersivecommons.com/api/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "immersive-commons-floor10": {
      "type": "http",
      "url": "https://www.immersivecommons.com/api/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: immersive-commons-floor10
Remote MCP URL: https://www.immersivecommons.com/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": {
    "immersive-commons-floor10": {
      "url": "https://www.immersivecommons.com/api/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "immersive-commons-floor10": {
      "type": "http",
      "url": "https://www.immersivecommons.com/api/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "immersive-commons-floor10",
  "transport": "streamable-http",
  "url": "https://www.immersivecommons.com/api/mcp"
}
MCP Inspector

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

Related tools

  • floor10_get_my_floor_member — Confirms the calling agent token is valid and returns the floor-member it's scoped to.
  • ic_capabilities — In-band capability matrix: every registered MCP tool with its one-line description, required scope (null = any valid token), the minimum membership tier whose users can mint a token carrying that scope, and whether THIS caller's token can reach it right now ('reachable' | 'needs_scope:<scope>').
  • ic_health — Probe the MCP surface's four upstream dependencies without firing any real (rate-limited) tool: kv (the floor10 Redis), blob (the last-known-good mirror), rag (the research funnel behind ic_research_ask), and context_source (the Open-Meteo weather feed behind ic_context_get).
  • floorcast_my_roles — Introspect the calling token's per-(user, tenant) Floorcast roles on its bound floor.
  • floorcast_effective_features — Resolve the effective feature-module set for the calling token's bound floor, LIVE from the tenant record: effective = (available ∩ enabled) \ force_disabled, plus the resolved tier and an 'N/total' breadcrumb (e.
  • floorcast_set_feature_enabled — Floor-Admin (operator-on-this-floor) toggles a module in the floor's ENABLED set; a module must be AVAILABLE on the floor to enable.
  • floorcast_set_feature_availability — Super-Admin (apex flag AND operator-on-THIS-floor) sets which modules a floor is ALLOWED to enable.
  • floorcast_set_ai_policy — Floor-Admin (operator-on-this-floor) sets the declarative AI-curation policy list (ai_policies) that drives the floor's AI self-updating wall.