Skip to main content
Glama
byndcloud

Unofficial Dex CRM MCP Server

by byndcloud

dex_get_current_user

Retrieve the currently authenticated user's profile including name, email, time zone, and subscription plan from the Dex CRM system.

Instructions

Retrieve the profile of the currently authenticated user including name, email, time zone, and subscription plan.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Registration and handler implementation for the dex_get_current_user tool.
    export function registerUserTools(server: McpServer): void {
      server.tool(
        "dex_get_current_user",
        "Retrieve the profile of the currently authenticated user including name, email, time zone, and subscription plan.",
        {},
        async () => {
          try {
            const result = await dex.get("/v1/users/me");
            return toResult(result);
          } catch (error) {
            return toError(error);
          }
        }
      );
    }

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/byndcloud/unofficial-dex-mcp'

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