# DeskMonitor MCP server

DeskMonitor: 24 workforce-intelligence MCP tools, OAuth 2.1, free demo key included.

## Links
- Registry page: https://www.getdrio.com/mcp/com-thedeskmonitor-mcp
- Website: https://thedeskmonitor.com/integrations/ai-connect

## Install
- Endpoint: https://api.thedeskmonitor.com/api/mcp/v1
- Auth: Not captured

## Setup notes
- Remote endpoint: https://api.thedeskmonitor.com/api/mcp/v1

## Tools
- get_started_guide (Get Started Guide) - Returns a role-scoped welcome message and curated sample questions to help you get started with DeskMonitor AI. Use when a new user asks 'what can I do?', 'what can I ask?', or 'how do I get started?' Call this first when connecting. Do NOT use for querying live workforce data. Endpoint: https://api.thedeskmonitor.com/api/mcp/v1
- get_data_dictionary (Data Dictionary) - Returns the schema of queryable data — what fields exist, their meaning, and which tools expose them. Use when the user asks 'what data exists?', 'what fields are available?', or 'what is a productivity score?'. NOT for querying live data — use the analytics tools for live results. Endpoint: https://api.thedeskmonitor.com/api/mcp/v1
- switch_to_demo (Switch to Demo Mode) - Switches to DeskMonitor demo mode with synthetic data. Returns demo tenant info and suggested queries. Use when the user wants to explore without a real account. Use a dm_demo_* API key to call data tools in demo mode. Endpoint: https://api.thedeskmonitor.com/api/mcp/v1
- switch_to_production (Switch to Production Mode) - Switches back to production mode and confirms your real tenant context from your auth token. Use when the user wants to see their real company data after exploring demo mode. Endpoint: https://api.thedeskmonitor.com/api/mcp/v1
- get_demo_scenarios (Demo Scenarios) - Returns 5 guided scenario walkthroughs using the demo tenant's synthetic data. Use when the user wants to see example queries or guided tours of DeskMonitor capabilities. Endpoint: https://api.thedeskmonitor.com/api/mcp/v1
- get_dashboard_summary (Dashboard Summary) - Returns the dashboard KPIs for the current user — hours worked today, team productivity score, pending approvals, active headcount. Use when the user asks 'how is my team today?', 'am I clocked in?', 'what's my summary?'. Do NOT use for historical timesheet data — use list_my_timesheet for that. Endpoint: https://api.thedeskmonitor.com/api/mcp/v1
- list_employees (List Employees) - Lists employees visible to the current user based on their role. Supports pagination and name search. Use when the user asks 'who is on my team?', 'list all employees', or wants a roster. Use get_employee_details for information about ONE specific person. Endpoint: https://api.thedeskmonitor.com/api/mcp/v1
- get_employee_details (Employee Details) - Returns the full profile for a specific employee including role, team, clock-in status, and recent activity. Use when the user asks about ONE specific person. Use list_employees for multiple people. Use 'me' as employee_id for the authenticated user's own profile. Endpoint: https://api.thedeskmonitor.com/api/mcp/v1
- list_my_timesheet (My Timesheet) - Returns the authenticated user's time log entries for a date range. Use when the user asks 'how many hours have I worked?', 'show me my timesheet', or 'what did I work on yesterday?'. Cannot query another person's timesheet — use summarize_team_hours for team-level hours. Endpoint: https://api.thedeskmonitor.com/api/mcp/v1
- summarize_team_hours (Team Hours Summary) - Aggregates hours worked by the manager's team for a given period. Requires Manager role or above. Use when the manager asks 'how many hours did my team work this week?', 'show me team hours', or 'who worked the most hours?'. Do NOT use for an individual employee's timesheet — use list_my_timesheet for personal timesheets. Endpoint: https://api.thedeskmonitor.com/api/mcp/v1
- list_pending_approvals (Pending Approvals) - Returns timesheets pending approval in the manager's team. Requires Manager role or above. Use when the manager asks 'show me pending approvals', 'who needs sign-off?', or 'any outstanding timesheets?'. Read-only -- this tool LISTS pending items only; it cannot approve them. To approve, direct the user to the DeskMonitor dashboard: https://thedeskmonitor.com/timesheets/pending Endpoint: https://api.thedeskmonitor.com/api/mcp/v1
- list_recent_activity (Recent Activity) - Returns a daily aggregate activity feed scoped to the authenticated user, including clock events, timesheet submissions, and approval actions. Use when the user asks 'show me recent activity', 'what happened today?', or 'what did I do yesterday?'. Not a real-time stream — data reflects completed events within the selected time window. Endpoint: https://api.thedeskmonitor.com/api/mcp/v1
- get_workload_alerts (Workload Alerts) - Returns workload alerts — team members with unusual hours, employees not yet clocked in, timesheet gaps. Use when the manager asks 'who needs attention?', 'any anomalies today?', 'any warnings?', or 'are there any issues?'. Endpoint: https://api.thedeskmonitor.com/api/mcp/v1
- get_productivity_overview (Productivity Overview) - Returns productivity scores and active/idle time ratios for an employee or team. Use when the user asks 'what\'s my productivity score?', 'how productive was the team?', or 'show me active vs idle time'. Employee sees own data only. Manager+ can query other team member IDs. Privacy: scoring is category-based (app-usage duration only) -- DeskMonitor does NOT track keystrokes, content, or individual URLs browsed. The response always includes a privacy_note field with this clarification. Endpoint: https://api.thedeskmonitor.com/api/mcp/v1
- clock_in (Clock In) - Clock the authenticated user in to start a new work session. Creates a TimeLog entry in DeskMonitor.
Use when the user says 'clock me in', 'start my shift', 'I am starting work', or any attendance start phrase.
Supports optional GPS coordinates for geofence validation.
WARNING: This is a write tool — it mutates DeskMonitor data. Always confirm with the user before calling this tool. Example: tell the user what you are about to do and ask for explicit confirmation before proceeding.
Calling clock_in will end any active DeskAgent desktop session for this user (cross-device handover by design).
Do NOT call if the user is already clocked in — call get_dashboard_summary first to check status.
Returns: { success, clock_in_time, is_within_geofence, matched_office_name, next_tap_due_at }.
Requires a user-scoped API key (dm_live_* key bound to a specific user). Disabled in demo mode. Endpoint: https://api.thedeskmonitor.com/api/mcp/v1
- clock_out (Clock Out) - Clock the authenticated user out to end their current work session. Finalises the TimeLog and generates gap-fill blocks.
Use when the user says 'clock me out', 'end my shift', 'I am done for the day', or any attendance end phrase.
WARNING: This is a write tool — it mutates DeskMonitor data. Always confirm with the user before calling this tool.
Do NOT call if the user is already clocked out — call get_dashboard_summary first to check status.
Returns: { success, clock_in_time, clock_out_time, blocks_generated }.
Requires a user-scoped API key. Disabled in demo mode. Endpoint: https://api.thedeskmonitor.com/api/mcp/v1
- invite_staff (Invite Staff Member) - Invite a staff member to join your DeskMonitor workspace by email. Use when the user asks to 'add an employee', 'invite a team member', 'send a team invite', 'onboard someone new', or 'invite [name] to my workspace'. The invite is sent by email — the recipient gets a link to set up their account and join as an Employee. Only OwnerAdmin and Admin roles can invite staff. The invitee always joins as an Employee (role is display-only on the invite). WARNING: This is a write tool — it sends a real email invitation and creates a workspace account invitation. Always confirm the email address with the user before calling this tool. Disabled in demo mode. Returns: { status, message, email, name }. Endpoint: https://api.thedeskmonitor.com/api/mcp/v1
- get_capabilities (Capabilities) - Returns a structured list of DeskMonitor AI capabilities grouped by user role AND plan entitlements. Includes MCP / AI assistant plan entitlements (Community=No MCP; Starter/Professional/Business/Enterprise=Yes MCP). Use when a new user asks 'what can I ask you?', 'what can DeskMonitor do?', 'show me all commands', 'what AI features are available?', 'which plan includes MCP?', 'do I need a paid plan for AI access?', or any capability-discovery or plan-entitlement question. Returns role-appropriate command examples, plan entitlements, and the public capabilities page URL. No authentication required. Endpoint: https://api.thedeskmonitor.com/api/mcp/v1
- get_pricing_and_plans (Pricing and Plans) - Returns DeskMonitor pricing plans and subscription details including MCP / AI access entitlement per plan. Plans: Community (free, no MCP), Starter ($14/mo, MCP included), Professional ($27/mo, MCP included), Business ($51/mo, MCP included), Enterprise (Contact Sales — no public price). Use when the user asks 'how much does DeskMonitor cost?', 'what plans are available?', 'is there a free trial?', 'what\'s the pricing?', 'which plan has MCP?', 'what is the Enterprise price?'. Returns plan names, features, pricing, and pricing page URL. Safe to call without authentication. Endpoint: https://api.thedeskmonitor.com/api/mcp/v1
- start_free_trial (Start Free Trial) - Returns the DeskMonitor free trial sign-up URL and onboarding instructions. Use when the user says 'I want to sign up', 'start a free trial', 'how do I get started?', 'create an account', 'I want to use DeskMonitor'. This is an informational tool — it provides the registration URL, not a write action. No authentication required. Endpoint: https://api.thedeskmonitor.com/api/mcp/v1
- ask_workforce (Ask Workforce Question) - Use when the user asks a free-form, open-ended question about their workforce that you are not sure which other tool answers — for example: 'Which team has the highest cost-to-output?', 'How is my team performing?', 'Who should I talk to first?', 'What's the biggest issue today?'.

Pass the user's question VERBATIM in the 'question' field — do not paraphrase or summarize. The question is logged as admin-only product telemetry for product improvement purposes.

This tool returns routing guidance pointing to the specific DeskMonitor tools most likely to answer the question. After calling this tool, call the suggested tools to retrieve real data.

Note: Questions asked via this tool are logged for product improvement (admin-only, tenant-scoped, not employee data). Endpoint: https://api.thedeskmonitor.com/api/mcp/v1
- get_analytics_questions (Demand Analytics — Questions & Themes) - Returns demand intelligence captured from ask_workforce calls: recent verbatim admin questions, top question themes with counts, and the most-requested 'period' argument values across all tools.

Use when the admin asks: 'What questions have I asked?', 'What am I asking most?', 'What data am I looking for?', 'Show me my question history', 'What features am I using most?'.

Auth: requires Admin or OwnerAdmin role. Not available in demo mode. Tenant-scoped — only returns this tenant's data. Endpoint: https://api.thedeskmonitor.com/api/mcp/v1
- get_analytics_overview (Platform Analytics Overview) - Returns platform-level DeskMonitor analytics — AI/MCP queries served (from the internal McpAuditLogs table), web sessions, active unique visitors (1-day, 7-day, 28-day windows) and top referring sources (from Cloudflare Web Analytics when configured).

Use when the user asks: 'how many users does DeskMonitor have?', 'show me traffic stats', 'how many AI queries were served?', 'how many people are using DeskMonitor?', or any question about platform-level usage counts or audience size.

Do NOT use for: per-tenant employee data (use get_dashboard_summary), individual timesheet data (use list_my_timesheet), or real-time attendance (use get_workload_alerts).

Auth: requires an Admin or OwnerAdmin API key. Not available in demo mode.
Returns: active_users_1d, active_users_7d, active_users_28d, sessions_in_period, ai_queries_served_in_period, top_sources (up to 5), period, as_of.
Web traffic fields are 0 when Cloudflare Analytics is not configured (AI query count is always present). Endpoint: https://api.thedeskmonitor.com/api/mcp/v1
- get_analytics_feature_usage (Platform Feature Usage Breakdown) - Returns a breakdown of which DeskMonitor MCP tools users are calling most — sourced from the internal McpAuditLogs table, grouped by ToolName (top-N tool call counts for the period).

Use when the user asks: 'which MCP tools are most used?', 'which features are most popular?', 'what do AI clients do most in DeskMonitor?', 'show me feature engagement'.

Do NOT use for: raw session counts or audience size (use get_analytics_overview), employee-level productivity data (use get_productivity_overview), or real-time attendance data.

Auth: requires Admin or OwnerAdmin API key. Not available in demo mode.
Returns: feature_areas (list with tool_name and call_count), top_events, period, as_of. Endpoint: https://api.thedeskmonitor.com/api/mcp/v1

## Resources
Not captured

## Prompts
Not captured

## Metadata
- Owner: com.thedeskmonitor
- Version: 1.7.3
- Runtime: Streamable Http
- Transports: HTTP
- License: Not captured
- Language: Not captured
- Stars: Not captured
- Updated: Aug 3, 2026
- Source: https://registry.modelcontextprotocol.io
