Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Provides integration with the Daily Time Tracking API, allowing users to get user info, list activities, get time summaries, timesheet data, and add activities.

README.md

Daily MCP Server

An MCP (Model Context Protocol) server that provides integration with the Daily Time Tracking API. This server allows you to interact with your Daily time tracking data through MCP-compatible clients like Claude Desktop.

Features

  • Get User Info: Retrieve information about your Daily account
  • List Activities: Get all your activities (with optional archived filtering)
  • Time Summary: Get time spent on activities within a date range
  • Timesheet Data: Get detailed daily timesheet information
  • Add Activities: Create new activities in Daily

Prerequisites

  1. Daily Time Tracking App: You need to have Daily installed and configured
  2. API Key: Enable the Web API in Daily preferences and get your API key
  3. Node.js: Version 18 or higher

Setup

  1. Install dependencies:
   npm install
  1. Build the project:
   npm run build
  1. Set your API key:
   export DAILY_API_KEY="your-api-key-here"

Usage

Running the Server

npm start

Development Mode

npm run dev

Available Tools

get_user_info

Get information about your Daily user account.

get_activities

Get a list of all your activities.

  • includeArchivedActivities (boolean, optional): Whether to include archived activities (default: true)

get_summary

Get a summary of time spent on activities within a date range.

  • start (string, required): Start date in ISO 8601 format (e.g., "2025-01-01")
  • end (string, required): End date in ISO 8601 format (e.g., "2025-01-31")
  • includeArchivedActivities (boolean, optional): Whether to include archived activities (default: true)

get_timesheet

Get detailed timesheet data for a date range.

  • start (string, required): Start date in ISO 8601 format
  • end (string, required): End date in ISO 8601 format
  • includeArchivedActivities (boolean, optional): Whether to include archived activities (default: true)

add_activities

Add new activities to Daily.

  • activities (array, required): Array of activities to add
  • name (string, required): Name of the activity
  • group (string, optional): Group name
  • archiveExistingActivities (boolean, optional): Whether to archive existing activities (default: false)

Integration with Claude Desktop

To use this server with Claude Desktop, add the following to your Claude Desktop configuration:

{
  "mcpServers": {
    "daily": {
      "command": "node",
      "args": ["/path/to/daily-mcp/dist/index.js"],
      "env": {
        "DAILY_API_KEY": "your-api-key-here"
      }
    }
  }
}

API Documentation

For detailed information about the Daily Time Tracking API, refer to the Daily App API Documentation or check the API documentation within the Daily app itself (Preferences > Integrations tab).

Development

Building

npm run build

Development Mode

npm run dev

License

MIT

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Other servers.