We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/GabrielGomesBarbosa/monday-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
users.ts•378 B
/**
* Monday.com Users Service
*
* Operations related to Monday.com users and authentication.
*/
import { mondayClient } from "../config/client"
/**
* Get current authenticated user information
*
* @returns Current user object with profile details
*/
export async function getMe() {
const response = await mondayClient.operations.getMeOp()
return response.me
}