Token导航 LogoToken导航TokenDH.com
Bigtime MCP Server logo
运维云端未说明官方级别未说明来源级核验

Bigtime MCP Server

MCP Server

BigTime MCP Server是一个模型上下文协议服务器,提供对BigTime时间追踪和项目管理API的访问,支持客户、项目、员工、时间记录和日常总计等信息的检索。

工具数

4

提示词数

0

GitHub Stars

0

资源数

0
API集成TypeScriptClaude任务管理Claude DesktopClaude

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

作者 / 组织

amanat361

提供方

amanat361

最后核验

2026/5/17 20:20

快速接入

先看主来源和安装命令,再打开仓库或文档;下面只保留这个条目的关键接入事实。

详细介绍

BigTime MCP服务器

一个模型上下文协议(MCP)服务器,为Claude提供访问BigTime的时间跟踪和项目管理API的权限。此服务器使Claude能够从您的BigTime帐户中检索有关客户、项目、员工、时间条目和每日总计的信息。

特性

  • 客户管理:检索客户详细信息和列表
  • 项目访问:获取项目信息和详细信息
  • 员工信息:访问工作人员数据和详细信息
  • 时间跟踪:检索时间条目和每日总计
  • 任务管理:访问任务信息

安装

npm install bigtime-mcp-server

设置

  1. 获取您的BigTime API证书:

- 您的BigTime帐户中的API代币 - BigTime设置中的公司ID

  1. 创建一个 .env 项目根目录中的文件:
   BIGTIME_API_TOKEN=your_api_token_here
   BIGTIME_FIRM_ID=your_firm_id_here

快速开始

# Install dependencies
npm install

# Build the project
npm run build

项目结构

bigtime-mcp-server/
├── src/
│   ├── tools/        # MCP Tools
│   │   └── ExampleTool.ts
│   └── index.ts      # Server entry point
├── package.json
└── tsconfig.json

添加组件

该项目附带了一个示例工具 src/tools/ExampleTool.ts。您可以使用CLI添加更多工具:

# Add a new tool
mcp add tool my-tool

# Example tools you might create:
mcp add tool data-processor
mcp add tool api-client
mcp add tool file-handler

工具开发

工具结构示例:

import { MCPTool } from "mcp-framework";
import { z } from "zod";

interface MyToolInput {
  message: string;
}

class MyTool extends MCPTool {
  name = "my_tool";
  description = "Describes what your tool does";

  schema = {
    message: {
      type: z.string(),
      description: "Description of this input parameter",
    },
  };

  async execute(input: MyToolInput) {
    // Your tool logic here
    return `Processed: ${input.message}`;
  }
}

export default MyTool;

发布到npm

  1. 更新你的package.json:

- 确保 name 是唯一的,遵循npm命名约定 - 设置适当 version - 添加 description, author, license等等。 - 检查 bin 指向正确的条目文件

  1. 在本地构建和测试:
   npm run build
   npm link
   bigtime-mcp-server  # Test your CLI locally
  1. 登录npm(必要时创建帐户):
   npm login
  1. 发布您的包:
   npm publish

发布后,用户可以将其添加到他们的claude桌面客户端(见下文)或使用npx运行它


## Using with Claude Desktop

### Local Development

Add this configuration to your Claude Desktop config file:

**MacOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`
**Windows**: `%APPDATA%/Claude/claude_desktop_config.json`

{ "mcpServers": { "bigtime-mcp-server": { "command": "node", "args":["/absolute/path/to/bigtime-mcp-server/dist/index.js"] } } }


### 发布后

将此配置添加到您的Claude Desktop配置文件中:

**MacOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`
**视窗**: `%APPDATA%/Claude/claude_desktop_config.json`

{ "mcpServers": { "bigtime-mcp-server": { "command": "npx", "args": ["bigtime-mcp-server"], "env": { "BIGTIME_API_TOKEN": "your_api_token_here", "BIGTIME_FIRM_ID": "your_firm_id_here" } } } }


## 建造和测试

1. 对工具进行更改
1. 跑 `npm run build` 编写
1. 服务器将在启动时自动加载您的工具

## 了解更多

- 
- [MCP框架文件](https://mcp-framework.com)

目录标签

目录标签

API集成TypeScriptClaude任务管理时间追踪本地部署项目管理

支持客户端

Claude DesktopClaude

接入字段

传输方式(transport,传输协议)

未说明

鉴权方式(authType,认证方式)

session

工具数量(toolCount,工具数)

4

资源数量(resourceCount,资源数)

0

提示词数量(promptCount,提示词数)

0

权限和风险

未说明session部署方式未说明

接入前请确认传输方式、认证方式和部署位置,并根据实际工具能力限制访问范围。

安装前确认

不要直接授予不必要的文件、网络或账号权限;先核对安装命令和配置内容。

仍需确认:installCommand

来源信息

继续浏览同类 MCP