Skip to main content
Glama
robcerda

monarch-mcp-server

by robcerda

debug_session_loading

Identify and resolve session loading errors on the Monarch Money MCP server to ensure smooth user interactions and system functionality.

Instructions

Debug session loading issues.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler function for the 'debug_session_loading' tool. It is registered via @mcp.tool() decorator and implements logic to debug session token loading from the secure keyring, returning status or detailed error information.
    @mcp.tool() def debug_session_loading() -> str: """Debug keyring session loading issues.""" try: # Check keyring access token = secure_session.load_token() if token: return f"✅ Token found in keyring (length: {len(token)})" else: return "❌ No token found in keyring. Run login_setup.py to authenticate." except Exception as e: import traceback error_details = traceback.format_exc() return f"❌ Keyring access failed:\nError: {str(e)}\nType: {type(e)}\nTraceback:\n{error_details}"

Other Tools

Related Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/robcerda/monarch-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server