get_user_info
Retrieve user metadata, including time zone and calendar IDs, from the Fulcra Context MCP server to access essential details stored in the Context by Fulcra system.
Instructions
Return general info about the Context by Fulcra user.
Returns user references such as time zone, calendar ids, and other metadata.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- fulcra_mcp/main.py:535-543 (handler)The handler function for the 'get_user_info' tool. It is decorated with @mcp.tool() which registers it with the MCP server. Fetches user information using FulcraAPI and returns it as a JSON string.@mcp.tool() async def get_user_info() -> str: """Return general info about the Context by Fulcra user. Returns user references such as time zone, calendar ids, and other metadata. """ fulcra = get_fulcra_object() user_info = fulcra.get_user_info() return "User information: " + json.dumps(user_info)