← comiza.lighting

INDIVIDUAL MCP TOOL

get_requests

List what has arrived in an inbox, newest last.

comiza.lightingnone authenticationAvailability not checked

LIVE ENDPOINT

https://comiza.lighting/mcp

No auth detected

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

comiza.lighting

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

.mcp.json

{
  "mcpServers": {
    "hookjar": {
      "type": "http",
      "url": "https://comiza.lighting/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

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

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "hookjar": {
      "type": "http",
      "url": "https://comiza.lighting/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "hookjar",
  "transport": "streamable-http",
  "url": "https://comiza.lighting/mcp"
}
MCP Inspector

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

Related tools

  • create_inbox — Create a public URL that captures any HTTP request sent to it.
  • list_inboxes — List the inboxes you currently own, with their URLs and expiry.
  • wait_for_request — Block until a request lands in the inbox, then return it.
  • get_request — Return the full method, headers, query string and body of a single captured request.
  • delete_inbox — Delete an inbox and everything captured in it.