← secure-flows.com
INDIVIDUAL MCP TOOL
post_sessions_revoke
Revokes the session referenced by the internal SESSION Bearer token.
LIVE ENDPOINT
https://www.secure-flows.com/mcp
Connect to this endpoint to inspect the live schema for post_sessions_revoke and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- A tool name, description or schema mentions credentials.
Parent server
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"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"secureflows-mcp-server": {
"type": "http",
"url": "https://www.secure-flows.com/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: secureflows-mcp-server
Remote MCP URL: https://www.secure-flows.com/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": {
"secureflows-mcp-server": {
"url": "https://www.secure-flows.com/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"secureflows-mcp-server": {
"type": "http",
"url": "https://www.secure-flows.com/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "secureflows-mcp-server",
"transport": "streamable-http",
"url": "https://www.secure-flows.com/mcp"
}
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.