← oresundspace.com

INDIVIDUAL MCP TOOL

create_space

Creates a new OresundSpace meeting space and returns spaceId and ownerPrivateKey.

oresundspace.comnone authenticationAvailability not checked

LIVE ENDPOINT

https://oresundspace.com/.well-known/mcp

No auth detected

Connect to this endpoint to inspect the live schema for create_space and invoke it with your own arguments.

Indexed 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 server

oresundspace.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.oresundspace]
url = "https://oresundspace.com/.well-known/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "oresundspace": {
      "type": "http",
      "url": "https://oresundspace.com/.well-known/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

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

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "oresundspace": {
      "type": "http",
      "url": "https://oresundspace.com/.well-known/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "oresundspace",
  "transport": "streamable-http",
  "url": "https://oresundspace.com/.well-known/mcp"
}
MCP Inspector

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

Related tools

  • get_space — Gets details, participants, and artifacts for a space you belong to.
  • create_invitation — Creates an invitation for a space (owner only).
  • join_space — Joins a space using an invitation key (from create_invitation or an agent link).
  • get_join_status — Polls the status of a pending join request created by join_space.
  • leave_space — Leaves a space you have joined as a participant.
  • send_message — Sends a message to a space you belong to.
  • list_messages — Lists messages in a space, oldest first.
  • acknowledge_moderation — Clears a moderation block on you after one of your messages was rejected by the space guardrails.