FreeAgent MCP Server

MIT License
1
  • Linux
  • Apple

hybrid server

The server is able to function both locally and remotely, depending on the configuration or use case.

Integrations

  • Provides integration with FreeAgent accounting software, enabling time tracking through timeslips and timers, including listing, filtering, creating, updating, and deleting timeslips, as well as starting and stopping timers.

FreeAgent MCP サーバー

FreeAgentのタイムスリップとタイマーを管理するためのClaude MCP(Model Context Protocol)サーバー。このサーバーにより、ClaudeはFreeAgentアカウントと連携して、時間を追跡し、タイマーを管理し、タイムスリップの操作を処理できます。

特徴

  • ネストされたデータを含むタイムスリップの一覧表示とフィルタリング
  • 新しいタイムスリップを作成する
  • 既存のタイムスリップを更新する
  • タイマーの開始と停止
  • タイムスリップを削除する
  • OAuthトークンの自動更新
  • 包括的なエラー処理
  • Dockerサポート

前提条件

  • Node.js 18+ (Node.js を直接使用する場合)
  • Docker と Docker Compose (コンテナ化して使用する場合)
  • APIアクセス可能なFreeAgentアカウント
  • FreeAgent 開発者ダッシュボードからの OAuth 認証情報

インストール

オプション1: Node.jsの直接インストール

  1. リポジトリをクローンします。
git clone https://github.com/yourusername/freeagent-mcp.git cd freeagent-mcp
  1. 依存関係をインストールします:
npm install
  1. OAuth トークンを取得します。
# Set your FreeAgent credentials export FREEAGENT_CLIENT_ID="your_client_id" export FREEAGENT_CLIENT_SECRET="your_client_secret" # Run the OAuth setup script node scripts/get-oauth-tokens.js

オプション2: Dockerのインストール

  1. リポジトリをクローンします。
git clone https://github.com/yourusername/freeagent-mcp.git cd freeagent-mcp
  1. 環境ファイルを作成します。
cp .env.example .env # Edit .env with your FreeAgent credentials
  1. Docker イメージをビルドします。
docker build -t freeagent-mcp .

構成

サーバーを MCP 設定に追加します (通常は%APPDATA%/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.jsonにあります)。

Node.js のインストールの場合:

{ "mcpServers": { "freeagent": { "command": "node", "args": ["path/to/freeagent-mcp/build/index.js"], "env": { "FREEAGENT_CLIENT_ID": "your_client_id", "FREEAGENT_CLIENT_SECRET": "your_client_secret", "FREEAGENT_ACCESS_TOKEN": "your_access_token", "FREEAGENT_REFRESH_TOKEN": "your_refresh_token" }, "disabled": false, "autoApprove": [] } } }

Docker インストールの場合:

{ "mcpServers": { "freeagent": { "command": "docker", "args": [ "run", "-i", "--rm", "-e", "FREEAGENT_CLIENT_ID", "-e", "FREEAGENT_CLIENT_SECRET", "-e", "FREEAGENT_ACCESS_TOKEN", "-e", "FREEAGENT_REFRESH_TOKEN", "freeagent-mcp" ], "env": { "FREEAGENT_CLIENT_ID": "your_client_id", "FREEAGENT_CLIENT_SECRET": "your_client_secret", "FREEAGENT_ACCESS_TOKEN": "your_access_token", "FREEAGENT_REFRESH_TOKEN": "your_refresh_token" }, "disabled": false, "autoApprove": [] } } }

使用法

設定が完了すると、Claude は次のツールを使用できるようになります。

タイムスリップ一覧

{ "from_date": "2024-01-01", // Start date (YYYY-MM-DD) "to_date": "2024-03-04", // End date (YYYY-MM-DD) "updated_since": "2024-03-04T12:00:00Z", // ISO datetime "view": "all", // "all", "unbilled", or "running" "user": "https://api.freeagent.com/v2/users/123", "task": "https://api.freeagent.com/v2/tasks/456", "project": "https://api.freeagent.com/v2/projects/789", "nested": true // Include nested resources }

タイムスリップを作成

{ "task": "https://api.freeagent.com/v2/tasks/123", "user": "https://api.freeagent.com/v2/users/456", "project": "https://api.freeagent.com/v2/projects/789", "dated_on": "2024-03-04", "hours": "1.5", "comment": "Optional comment" }

タイマーコントロール

// Start timer { "id": "123" } // Stop timer { "id": "123" }

発達

Node.js開発

# Build the project npm run build # Watch for changes npm run watch # Run tests (when implemented) npm test

Docker開発

# Build the Docker image docker build -t freeagent-mcp .

貢献

  1. リポジトリをフォークする
  2. 機能ブランチを作成します( git checkout -b feature/amazing-feature
  3. 変更をコミットします ( git commit -am 'Add some amazing feature' )
  4. ブランチにプッシュする ( git push origin feature/amazing-feature )
  5. プルリクエストを開く

ライセンス

このプロジェクトは MIT ライセンスに基づいてライセンスされています - 詳細についてはLICENSEファイルを参照してください。

謝辞

  • 優れたAPIドキュメントを提供するFreeAgent
  • MCP SDKのClaudeチーム

You must be authenticated.

A
security – no known vulnerabilities
A
license - permissive license
A
quality - confirmed to work

Claude が FreeAgent アカウントと対話して時間を追跡し、タイマーを管理し、タイムスリップ操作を処理できるようにする Claude MCP サーバー。

  1. Features
    1. Prerequisites
      1. Installation
        1. Option 1: Direct Node.js Installation
        2. Option 2: Docker Installation
      2. Configuration
        1. For Node.js Installation:
        2. For Docker Installation:
      3. Usage
        1. List Timeslips
        2. Create Timeslip
        3. Timer Controls
      4. Development
        1. Node.js Development
        2. Docker Development
      5. Contributing
        1. License
          1. Acknowledgments
            ID: 2qsl0xvx2t