TikTak MCP Server

TikTak MCP Server

MCP server for TikTak time tracking and invoicing API, enabling AI assistants to manage customers, track time, and create invoices.

Category
Visit Server

README

TikTak MCP Server

A Model Context Protocol (MCP) server for the TikTak time tracking and invoicing API. Connect your AI assistant to manage customers, track time, and create invoices.

Features

32 tools across 7 categories:

Category Tools Examples
Customers 6 List, create, bulk import, update, archive
Services 5 List, create, update, archive
Time Tracking 9 Start/stop/continue timers, log entries, running timers
Invoices 8 Create draft, edit line items, change status, view uninvoiced entries
Dashboard 1 Hours, revenue, top customers, daily breakdown
Exports 2 PDF/Excel for log entries and invoices
Settings 1 Company details, defaults (read-only)

4 resources for ambient context: customers, services, running timers, settings.

Prerequisites

  • Node.js 18+
  • A TikTak account with an API key (Settings > API Keys, requires Admin role)

Installation

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "tiktak": {
      "command": "npx",
      "args": ["-y", "github:ideaCompany/tiktak-mcp-server"],
      "env": {
        "TIKTAK_API_KEY": "tk_your_api_key_here"
      }
    }
  }
}

Claude Code (CLI)

claude mcp add tiktak -- npx -y github:ideaCompany/tiktak-mcp-server

Then set TIKTAK_API_KEY in your environment.

OpenAI / Gemini / Other MCP Clients

Use the same stdio pattern:

{
  "command": "npx",
  "args": ["-y", "tiktak-mcp-server"],
  "env": {
    "TIKTAK_API_KEY": "tk_your_api_key_here"
  }
}

Direct from GitHub

npx github:ideaCompany/tiktak-mcp-server

Environment Variables

Variable Required Default Description
TIKTAK_API_KEY Yes Your TikTak API key (tk_ prefixed)
TIKTAK_API_URL No https://api.tiktakme.com API base URL (for self-hosted or dev)

Example Workflows

Import customers from a spreadsheet

"Here's my customer list: Acme Corp (VAT: BE0123456789, Brussels), Widget Inc (Amsterdam)..."

The AI will use create_customers_bulk to import them all at once.

Track time

"Start a timer for Acme Corp on the Consulting service"

Uses list_customerslist_servicesstart_timer.

"Stop my running timer"

Uses get_running_timersstop_timer.

Create an invoice

"Create an invoice for Acme Corp for all uninvoiced work"

Uses get_uninvoiced_entriescreate_invoice (as Draft).

Dashboard overview

"How many hours did I track this month? What's my outstanding revenue?"

Uses get_dashboard_stats.

Development

git clone https://github.com/user/tiktak-mcp-server.git
cd tiktak-mcp-server
npm install
npm run dev  # requires TIKTAK_API_KEY env var

Testing with MCP Inspector

npx @modelcontextprotocol/inspector npx tiktak-mcp-server

Build

npm run build  # outputs dist/index.js

API Key Security

  • API keys are created in the TikTak app by Admin or Owner users
  • Keys use the tk_ prefix and are hashed (SHA256) server-side
  • The full key is shown only once at creation — store it securely
  • Keys can be revoked anytime in the TikTak app
  • Rate limits apply per key (based on your plan tier)

License

MIT

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured