← wgo.fyi

INDIVIDUAL MCP TOOL

get_event

Look up a local event by its public share code (the part after wgo.fyi/e/ in a share link).

wgo.fyinone authenticationAvailability not checked

LIVE ENDPOINT

https://api.wgo.fyi/mcp

No auth detected

Connect to this endpoint to inspect the live schema for get_event 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

wgo.fyi

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.my-local-events]
url = "https://api.wgo.fyi/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "my-local-events": {
      "type": "http",
      "url": "https://api.wgo.fyi/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: my-local-events
Remote MCP URL: https://api.wgo.fyi/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": {
    "my-local-events": {
      "url": "https://api.wgo.fyi/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "my-local-events": {
      "type": "http",
      "url": "https://api.wgo.fyi/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "my-local-events",
  "transport": "streamable-http",
  "url": "https://api.wgo.fyi/mcp"
}
MCP Inspector

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

Related tools

  • create_event — Create a local event from structured fields and return a shareable link.
  • create_event_from_text — Create a local event from a natural-language description (e.g.
  • delete_event — Delete an event you created.
  • import_ics — Create a local event from the contents of an iCalendar (.ics) file and return a shareable link.
  • update_event — Update fields on an event you created.