From 1538e14b709fb7f8d1e7950db4c9f6d74d8f4252 Mon Sep 17 00:00:00 2001 From: Danijel Date: Wed, 18 Mar 2026 02:28:36 +0100 Subject: [PATCH] chore: update authorship and add CREDITS file Co-Authored-By: Claude Opus 4.6 (1M context) --- CREDITS | 3 +++ README.md | 8 ++++---- package.json | 4 ++-- 3 files changed, 9 insertions(+), 6 deletions(-) create mode 100644 CREDITS diff --git a/CREDITS b/CREDITS new file mode 100644 index 0000000..5915725 --- /dev/null +++ b/CREDITS @@ -0,0 +1,3 @@ +Original project by Manuel Ernst + GitHub: https://github.com/SwamiRama/solidtime-mcp-server + License: MIT (Copyright (c) 2026 Manuel Ernst) diff --git a/README.md b/README.md index c359a75..78f4183 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,6 @@ # solidtime-mcp-server -[![CI](https://github.com/SwamiRama/solidtime-mcp-server/actions/workflows/ci.yml/badge.svg)](https://github.com/SwamiRama/solidtime-mcp-server/actions/workflows/ci.yml) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) -[![npm](https://img.shields.io/npm/v/solidtime-mcp-server)](https://www.npmjs.com/package/solidtime-mcp-server) Cloud-hosted MCP server for [SolidTime](https://www.solidtime.io/) — the open-source time tracking app. Start/stop timers, manage time entries, projects, clients, tags, tasks, members, invitations, and organizations directly from Claude, Cursor, or any MCP-compatible client. @@ -37,6 +35,7 @@ Add to your `claude_desktop_config.json`: { "mcpServers": { "solidtime": { + "type": "http", "url": "https://your-server.example.com/mcp", "headers": { "x-solidtime-api-token": "your-token-here", @@ -57,6 +56,7 @@ Add to your `.mcp.json`: { "mcpServers": { "solidtime": { + "type": "http", "url": "https://your-server.example.com/mcp", "headers": { "x-solidtime-api-token": "your-token-here", @@ -267,8 +267,8 @@ Sessions expire after 30 minutes of inactivity. Reconnect to create a new sessio ## Development ```bash -git clone https://github.com/SwamiRama/solidtime-mcp-server.git -cd solidtime-mcp-server +git clone https://git.fraqtal.xyz/danijel/solidtime-mcp.git +cd solidtime-mcp npm install npm run dev:http # Run HTTP mode with tsx (dev) npm run dev # Run stdio mode with tsx (dev) diff --git a/package.json b/package.json index d5c4864..7eccf6f 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "solidtime-mcp-server", "version": "1.0.0", "description": "MCP server for SolidTime time tracking — start/stop timers, manage entries, projects, clients, tags, and tasks", - "author": "Manuel", + "author": "Danijel", "license": "MIT", "type": "module", "bin": { @@ -52,6 +52,6 @@ ], "repository": { "type": "git", - "url": "https://github.com/SwamiRama/solidtime-mcp-server" + "url": "https://git.fraqtal.xyz/danijel/solidtime-mcp" } }