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
client.ts•416 B
/**
* Monday.com API Client Configuration
*
* Singleton instance of the Monday.com API client configured with authentication token.
*/
import { ApiClient } from '@mondaydotcomorg/api'
const MONDAY_API_TOKEN = process.env.MONDAY_API_TOKEN
if (!MONDAY_API_TOKEN) {
throw new Error('MONDAY_API_TOKEN environment variable is required')
}
export const mondayClient = new ApiClient({ token: MONDAY_API_TOKEN })