#tracking
64 results found
Sentry
Retrieving and analyzing issues from Sentry.io
Linear MCP Server
Mirror of
Task Tracker
A mcp server for task management with Linear and time tracking with TrackingTime
Tracking Time Mcp
Official MCP server for TrackingTime, the time tracking and productivity platform. Query time entries by user or across your entire team, list projects, tasks, customers, and workspace members. Supports date filtering and pagination. Hosted via SSE — no install needed.
Rollbar MCP Server
Mirror of
gatherings MCP Server
This is a TypeScript-based MCP server, which wraps around a python script. together it helps track expenses and payments for social events, making it easy to calculate reimbursements and settle balances between friends.
Nutrition MCP
Track meals, macros, and nutrition history — all through conversation with Claude. 100% free.
Bugzilla
Model Context Protocol server for Bugzilla. Enables AI apps to interact with Bugzilla bug tracking systems.
flightradar-24-mcp-server
Flightrader24 MCP Server
mcp-cloudwatch-tracker
MCP Server for tracking logs with AWS CloudWatch
Diditchange
Track website changes through natural conversation. DidItChange is a native MCP server that lets you monitor any public URL for changes, things like pricing pages, documentation, job boards, competitor sites. Get AI-powered summaries of what changed, search across tracked pages, and trigger manual checks. Works with ChatGPT, Claude, and any MCP-compatible client. Hosted service with OAuth authentication.
Tribal - Knowledge Service
Mirror of
mcp-clockify
MCP Clockify Server
Vesselapi Mcp Server
Query maritime vessel tracking data via natural language. Search vessels by name/IMO/MMSI, get real-time positions, ETAs, portevents, emissions, inspections, casualty records, and NAVTEX safety messages. Powered by vesselapi.com.
Toggl MCP Server
MCP Server for Toggl
Focuslog
A background server that logs your desktop activity, calculates your Actions Per Minute (APM), and provides a clean, anonymized timeline of your work on demand. It's designed to be a data source for personal analytics or AI assistants.
Goalmochi
GoalMochi isn’t a goal tracker—it’s a brand new way to manage your aspirations. Instead of juggling endless lists, GoalMochi guides you to focus on one goal at a time, forging a deeply personal narrative that keeps you motivated and on track. Powered by conversational AI, GoalMochi provides constructive insights and creative storytelling tailored to your unique motivations, helping you see your goal through to completion with a sense of momentum and fun. Goal Mochi works because it weaves proven visualization techniques into your planning process. Research shows that using mental imagery when forming implementation intentions leads to higher rates of goal achievement.¹ By collaborating with an AI “thought partner,” you’ll generate personally meaningful stories that tap into your intrinsic motivators, priming both your mind and emotions to move forward. It’s not about ticking boxes—it’s about intuitive goal management that meets you where you are and adapts with you. At the heart of this approach lies GoalMochi’s GoalMochi Agent, which transforms the typical, often dull process of goal tracking into an engaging, fun, and deeply resonant experience. With every completed goal, your insights and progress are securely captured, so you can reflect and build on them in the future. You don’t have to abandon your usual tools—track your tasks wherever you like. GoalMochi simply turns goal-tracking into a dynamic story that evolves, energizes, and empowers you to achieve what matters most. Getting started is EASY! 1. Email story@GoalMochi.com with some details about you and the goal you want to achieve 2. Log into GoalMochi.com with the same email address (or with a Google account connected to your email) to schedule a daily goal summary to be emailed to you 3. Email story@GoalMochi.com at any time to request a new story about your goal or give feedback, tell GoalMochi you've completed your goal and want to work on a new one, and so on. Stories from GoalMochi and daily summaries include AI deep research, so you're both inspired and informed!
timewarrior-mcp-server
MCP Server for interacting with TimeWarrior
MarineTraffic MCP Server
Mirror of
Mintline
Connect AI assistants like Claude to manage your receipts and bank transactions using natural language. Automatically match receipts to transactions, analyze spending patterns, and review financial data conversationally.
Linkbreakers
Linkbreakers is a QR‑driven customer‑journey platform. Use this MCP server to connect your account and create/manage tracked QR codes and short links, generate QR assets, and view engagement analytics.
Hevy MCP
A TypeScript MCP Server for interacting with Hevy Workout App in LLMs
BrickPulse — LEGO Deals, Retirement Dates & Set Info
Query real-time LEGO data from BrickPulse.ai. Search 19,000+ LEGO sets, find the best deals across US retailers, check retirement dates, and track price history. Tools include: search_sets (search by name, theme, year, price), get_set_details (full set info with retailer prices and BrickLink market data), get_deals (best current deals ranked by discount %), get_retiring_soon (sets retiring soon with urgency indicators), and get_price_history (price trends per retailer over time).
Toggl Track MCP Server
An MCP server for Toggl Track. Built by Claude Code
Agent Price Api
A high-performance MCP server providing structured, real-time price data for AI hardware, robotics, and robot/RC power across global marketplaces, built with a focus on agent-native discovery over hardcoded endpoints.
Atlassian Jira MCP Server
Node.js/TypeScript MCP server for Atlassian Jira. Equips AI systems (LLMs) with tools to list/get projects, search/get issues (using JQL/ID), and view dev info (commits, PRs). Connects AI capabilities directly into Jira project management and issue tracking workflows.
Multi Carrier Shipping Api — Powered By Secureship
Secureship MCP gives AI assistants access to a multi-carrier shipping API covering rate comparison, label generation, package tracking, pickup scheduling, address book management, shipment history, customs documents, and more — across carriers like UPS, FedEx, Purolator, Canpar, and others. Browse 150+ live endpoint schemas, parameters, and auth details — always current, never stale.
Gitscrum Studio Mcp Server
GitScrum Studio MCP server for AI-powered project management. 29 tools covering tasks, sprints, time tracking, invoicing, proposals, client workflows, analytics, standups, wikis, and discussions. Supports 160+ operations with built-in OAuth device flow authentication.
Splid MCP
# Splid MCP Server A Model Context Protocol (MCP) server that exposes Splid (splid.app) via tools, powered by the reverse‑engineered `splid-js` client. - Language/Runtime: Node.js (ESM) + TypeScript - Transport: Streamable HTTP (and stdio for local inspector) - License: MIT ## Quick start 1) Install ```bash npm install ``` 2) Configure env Create a `.env` in project root: ``` CODE=YOUR_SPLID_INVITE_CODE PORT=8000 ``` 3) Build and run ```bash npm run build npm run dev ``` 4) Inspect locally ```bash npm run inspect ``` Then connect to `http://localhost:8000/mcp` using "Streamable HTTP". ## Tools All tools support an optional group selector to override the default from `CODE`: - `groupId?: string` - `groupCode?: string` (invite code) - `groupName?: string` (reserved; not yet supported) If none provided, the server uses the default group from `CODE`. ### health - Purpose: connectivity check - Output: `{ ok: true }` ### whoami - Purpose: show the currently selected group and its members - Input: none - Output: JSON containing group info and members ### createExpense - Purpose: create a new expense entry - Input: - `title: string` - `amount: number > 0` - `currencyCode?: string` (defaults to the group default when omitted) - `payers: { userId?: string; name?: string; amount: number > 0 }[]` (at least 1) - `profiteers: { userId?: string; name?: string; share: number in (0,1] }[]` (at least 1) - Optional group selector fields - Rules: - Names are case‑insensitive and resolved to member GlobalId; unknown names return a clear error. - The sum of all `share` values must equal 1 (±1e‑6). - Example (names): ```json { "title": "Dinner", "amount": 12.5, "payers": [{ "name": "Alice", "amount": 12.5 }], "profiteers": [{ "name": "Bob", "share": 0.6 }, { "name": "Alice", "share": 0.4 }] } ``` - Example (userIds): ```json { "title": "Dinner", "amount": 12.5, "payers": [{ "userId": "<GlobalId>", "amount": 12.5 }], "profiteers": [{ "userId": "<GlobalId>", "share": 1 }] } ``` ### listEntries - Purpose: list recent entries in a group - Input: - `limit?: number` (1..100, default 20) - Optional group selector fields - Output: array of entries ### getGroupSummary - Purpose: show balances/summary for a group - Input: - Optional group selector fields - Output: summary object (balances computed via Splid) ### Streamable HTTP - URL: `http://localhost:8000/mcp` - No auth headers required; use MCP Inspector to test. ## Troubleshooting - "Bad Request: Server not initialized": refresh and reconnect; first POST must be `initialize`. - 400 with share errors: ensure shares are in (0,1] and sum to 1. - Unknown name: check exact member names in `whoami` output. ## Configuration - Env variables: - `CODE`: Splid invite/join code for the default group - `PORT` (optional): default 8000 ## Acknowledgements - Splid JS client: https://github.com/LinusBolls/splid-js - MCP Server template / docs: https://github.com/InteractionCo/mcp-server-template ## License MIT
Itemit MCP Server
itemit-mcp is an MCP server for asset tracking, providing a bridge between the itemit asset management API and the Model Context Protocol (MCP) ecosystem.
Itemit Asset Tracking
itemit-mcp exposes a set of tools for interacting with the itemit asset management platform via the MCP protocol. It allows you to search, create, and manage assets and locations programmatically, making it easy to integrate itemit with other MCP-enabled systems. Following tools available:
Limelink Mcp Server
MCP server for managing Limelink dynamic links. Create short links with platform-specific deep linking (iOS/Android), social media previews, and UTM tracking. Retrieve link details by suffix or full URL. Includes documentation resources and guided prompts for link creation and deep linking setup.ㅌ
Agent Analytics
Analytics your AI agent can actually use. Your agent tracks what's working across multiple projects, runs A/B experiments, analyzes funnels, and reports back to you. Works with Claude Code, Cursor, Windsurf, Codex, and any agent that speaks HTTP or MCP. Open source, API-first, no dashboard required.
MOCO agency and project management platform
A Model Context Protocol (MCP) server that provides employee read access to the MOCO API for time tracking, project management, holiday tracking, and presence monitoring.
Shipping MCP
Carrier detection, tracking URLs, shipping estimates, and customs calculator for AI agents. 6 tools, free, no API key.
Geolocate Me
Give any AI assistant real-time access to your phone's GPS. Ask "where am I?", "where did I park?", or "where was I yesterday at 3pm?" and get real answers. Install the iOS or Android app, connect once with OAuth, and your location is yours to query in natural language.
Real Estate Intelligence Pitt County, Nc
Deep real estate intelligence for Pitt County NC. 20 MCP tools covering 80,900+ properties, 163,000+ building permits, 212,000+ sale records, entity resolution, foreclosure tracking, builder intelligence, and semantic search across government meetings. All public record data, updated weekly. One credit per API call. Credit packages start at $9 for 250 credits.
REP Helper
REP Helper MCP Server Track and document rental hours for IRS Real Estate Professional Status (REPS) and Short-Term Rental (STR) material participation — all through natural language. Log time entries by property and activity, query year-to-date totals, and pull audit-ready reports without leaving your AI assistant. Built for the 750-hour REPS threshold, the STR 100-hour test, and every participation rule in between. Real estate investors can manage their entire compliance workflow conversationally, while developers can build agents that automatically capture hours from calendars, emails, and task logs. Your hours, your proof, on demand at rephelper.ai.
FreelanceOS
AI-powered freelance business manager for Claude Code. Proposals, invoices, time tracking, scope management, and follow-ups - 37 tools, 5 coaching skills.
SkillBubble — Skills Management MCP Server
Track and manage your professional skills, certifications, and competency frameworks. Your AI assistant can read your skill profile, suggest updates based on what you're building, and keep your profile current as you work. Supports skill ratings, certification tracking, gap analysis, and AI-powered skill suggestions.
Cryptoiz Mcp
v4.16.0 - AI-powered Solana DEX whale intelligence for Claude Desktop. 9 tools: whale alpha scanner, divergence scanner, accumulation/neutral/distribution phase scanners, BTC macro regime monitor, and NEW BTC Futures Signal (4H+5m multi-timeframe scalping). Pay-per-call via x402 USDC on Solana ($0.01-$0.05). No subscription, no API key, gas sponsored by Dexter.
Amazon FBA Seller MCP Server - PROPAMP AI
Amazon Seller Central MCP Server — PROPAMP AI — official Amazon Software Partner. Connect your AI agent directly to Seller Central to analyze profitability and costs, find growth opportunities, plan supply chains, and manage ads — 20x faster, saving thousands of dollars monthly. → Case studies and full feature list at propamp.ai