FogBugz MCP Server

by akari2600

FogBugz MCP 服务器

模型上下文协议 (MCP) 服务器,用于通过语言学习模型 (LLM)(例如 Claude)与 FogBugz 进行交互。

概述

该服务器允许 LLM 对 FogBugz 执行各种操作,包括:

  • 创建带有可选附件的新问题/案例
  • 更新现有案例(更改项目、领域、里程碑、优先级)
  • 将案例分配给特定用户
  • 列出用户的未结案件
  • 获取具体案例的直接链接
  • 按不同标准搜索案例

该服务器实现了模型上下文协议 (MCP)规范,允许任何与 MCP 兼容的 LLM 客户端使用它。

项目背景

该项目是在OpenAI 的 o3-mini-high 模型的帮助下启动的,该模型生成了一份全面的开发计划(请参阅代码库中的 DEVELOPMENT-PLAN.md)。该计划概述了使用 TypeScript 构建 FogBugz MCP 服务器的架构、工具和实现细节。

这份详细的规范为开发团队提供了蓝图,展示了人工智能如何在项目设计和规划的早期阶段有效辅助。该项目既是人工智能辅助开发的典范,也是通过MCP协议增强人工智能能力的工具。

安装

# Install from npm npm install -g fogbugz-mcp # Or use directly with npx npx fogbugz-mcp <fogbugz-url> <api-key>

用法

基本用法

# Run with command line arguments fogbugz-mcp https://yourcompany.fogbugz.com your-api-key # Or use environment variables export FOGBUGZ_URL=https://yourcompany.fogbugz.com export TEST_FOGBUGZ_API_KEY=your-api-key fogbugz-mcp

发展

# Clone the repository git clone https://github.com/yourusername/fogbugz-mcp.git cd fogbugz-mcp # Install dependencies npm install # Create a .env file with your FogBugz credentials echo "FOGBUGZ_URL=https://yourcompany.fogbugz.com" > .env echo "TEST_FOGBUGZ_API_KEY=your-api-key" >> .env # Run API explorer to test FogBugz API npm run explore # Run the development version of the server npm run dev # Run tests npm test # Build the project npm run build

API 浏览器

该项目包括一个 API 探索工具,用于直接测试 FogBugz API 端点:

# Run all API tests npm run explore # Run a specific test (by index) npm run explore 0 # Run the first test

MCP 工具

该服务器为 LLM 提供以下 MCP 工具:

  • fogbugz_create_case - 创建一个新的 FogBugz 案例
  • fogbugz_update_case - 更新现有案例的字段
  • fogbugz_assign_case - 将案例分配给特定用户
  • fogbugz_list_my_cases - 列出分配给特定用户的案例
  • fogbugz_search_cases - 使用查询字符串搜索案例
  • fogbugz_get_case_link - 获取特定案例的直接链接

执照

国际学习中心

-
security - not tested
F
license - not found
-
quality - not tested

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

模型上下文协议服务器使语言学习模型能够与 FogBugz 交互,允许创建和更新问题、分配案例、列出未结案例以及通过自然语言搜索等操作。

  1. 概述
    1. 项目背景
      1. 安装
        1. 用法
          1. 基本用法
          2. 发展
        2. API 浏览器
          1. MCP 工具
            1. 执照

              Related MCP Servers

              • A
                security
                A
                license
                A
                quality
                A Model Context Protocol server that provides tools for code modification and generation via Large Language Models, allowing users to create, modify, rewrite, and delete files using structured XML instructions.
                Last updated -
                12
                Python
                MIT License
                • Linux
                • Apple
              • -
                security
                A
                license
                -
                quality
                A Model Context Protocol server that integrates Claude with Blender, enabling users to analyze and interact with IFC (Industry Foundation Classes) building models through natural language commands.
                Last updated -
                5
                Python
                MIT License
                • Apple
              • -
                security
                F
                license
                -
                quality
                A Model Context Protocol server that bridges AI assistants like Claude with Wordware's specialized agent capabilities, allowing dynamic loading and access to any Wordware flow through a standardized interface.
                Last updated -
                Python
              • -
                security
                A
                license
                -
                quality
                A Model Context Protocol server that enables large language models to interact with Linear's issue tracking system, allowing management of issues, projects, teams, and other Linear resources.
                Last updated -
                TypeScript
                MIT License
                • Apple

              View all related MCP servers

              ID: cbqrmh240t