← secure-flows.com

INDIVIDUAL MCP TOOL

auth_session_callback

**Browser redirect endpoint** used after hosted `/app/sessions/login`.

secure-flows.comnone authenticationAvailability not checked

LIVE ENDPOINT

https://www.secure-flows.com/mcp?alias=secure-flows

No auth detected

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

secure-flows.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.secureflows-mcp-server]
url = "https://www.secure-flows.com/mcp?alias=secure-flows"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "secureflows-mcp-server": {
      "type": "http",
      "url": "https://www.secure-flows.com/mcp?alias=secure-flows"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: secureflows-mcp-server
Remote MCP URL: https://www.secure-flows.com/mcp?alias=secure-flows

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": {
    "secureflows-mcp-server": {
      "url": "https://www.secure-flows.com/mcp?alias=secure-flows"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "secureflows-mcp-server": {
      "type": "http",
      "url": "https://www.secure-flows.com/mcp?alias=secure-flows"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "secureflows-mcp-server",
  "transport": "streamable-http",
  "url": "https://www.secure-flows.com/mcp?alias=secure-flows"
}
MCP Inspector

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

Related tools

  • get_sessions — Returns the decrypted session payload for the authenticated internal session token.
  • post_sessions — Verifies **Firebase** ID token, creates a session for **`workspaceName`**, stores serialized **`payload`** (defaults to `{}` when omitted), and returns **`sessionToken`** (JWT; subject = internal session id).
  • get_sessions_identity — Returns the workspace end-user's **`userId`** and **email** for the authenticated session token.
  • post_sessions_get_or_create — Verifies **Firebase** ID token.
  • post_sessions_renew_session_token — Verifies **Firebase** ID token.
  • post_sessions_set_key — Sets a key in the encrypted session payload and returns the updated decrypted payload.
  • get_sessions_get_key — Retrieves the decrypted payload value for `key`.
  • delete_sessions_delete_key — Removes `key` from the session payload and returns `true` if the key existed.