Skip to main content

Model Context Protocol (MCP) server integrating Geekbot data and tools to Claude AI

Project description

Geekbot MCP

Geekbot MCP Logo License: MIT Python 3.10+ PyPI version smithery badge Verified on MseeP

Unlock your Geekbot data within your LLM applications 🚀

Geekbot MCP (Model Context Protocol) server acts as a bridge, connecting LLM client applications (like Claude) directly to your Geekbot workspace. This allows you to interact with your standups, reports, and team members seamlessly within your conversations using natural language.

Key Features ✨

  • Access Standup Information: List all standups in your Geekbot workspace. 📊
  • Retrieve Standup Reports: Fetch reports with filters for specific standups, users, or date ranges. 📄
  • View Team Members: Get a list of members you collaborate with in Geekbot. 👥

Installation 💻

Installing via Smithery

To install Geekbot MCP for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @geekbot-com/geekbot-mcp --client claude

Manual Installation

Requires Python 3.10+ and uv.

  1. Install uv (if you haven't already):

    curl -LsSf https://astral.sh/uv/install.sh | sh
    

    (See uv installation docs for more options.)

  2. Install Geekbot MCP:

    uv tool install geekbot-mcp
    

Upgrading ⬆️

To update to the latest version:

  uv tool install --upgrade geekbot-mcp

Configuration ⚙️

Connect Geekbot MCP to your LLM (e.g., Claude Desktop):

  1. Get your Geekbot API Key: Find it in your Geekbot API/Webhooks settings 🔑.

  2. Find your uv executable path:

      which uv
    
  3. Configure your LLM client application: Edit your claude_desktop_config.json (or equivalent configuration file for other MCP clients) to add Geekbot MCP server

    {
      "globalShortcut": "",
      "mcpServers": {
        // Add or update this section
        "geekbot-mcp": {
    
          "command": "<path-returned-by-which-uv>", // Replace with your actual uv path
          "args": [
            "tool",
            "run",
            "geekbot-mcp"
          ],
          // Environment variables needed by the server
          "env": {
            "GB_API_KEY": "<your-geekbot-api-key>" // Replace with your actual API key
          }
        }
        // ... other MCP servers if any
      }
      // ... other configurations
    }
    

    For use with Claude Desktop, install the client and follow the quickstart guide: (Refer to the MCP Quickstart for more details on client configuration.)

Usage 💡

Once configured, your LLM client application will have access to the following tools and prompts to interact with your Geekbot data:

Tools 🛠️

  • list_standups

Purpose: Lists all the standups accessible via your API key. Useful for getting an overview or finding a specific standup ID.

Example Prompt: "Hey, can you list my Geekbot standups?"

Data Fields Returned:

  • id: Unique standup identifier.

  • name: Name of the standup.

  • channel: Associated communication channel (e.g., Slack channel).

  • time: Scheduled time for the standup report.

  • timezone: Timezone for the scheduled time.

  • questions: List of questions asked in the standup.

  • participants: List of users participating in the standup.

  • owner_id: ID of the standup owner.

  • confidential: Whether the standup is confidential.

  • anonymous: Whether the standup is anonymous.

  • list_polls

Purpose: Lists all the polls accessible via your API key. Useful for getting an overview or finding a specific poll ID.

Example Prompt: "Hey, can you list my Geekbot polls?"

Data Fields Returned:

  • id: Unique poll identifier.

  • name: Name of the poll.

  • time: Scheduled time for the poll.

  • timezone: Timezone for the scheduled time.

  • questions: List of questions asked in the poll.

  • participants: List of users participating in the poll.

  • creator: The poll creator.

  • fetch_reports

Purpose: Retrieves specific standup reports. You can filter by standup, user, and date range.

Example Prompts:

  • "Fetch the reports for submitted yesterday in the Retrospective."
  • "Show me reports from user John Doe for the 'Weekly Sync' standup."
  • "Get all reports submitted to the Daily Standup standup after June 1st, 2024."

Available Filters:

  • standup_id: Filter by a specific standup ID.
  • user_id: Filter reports by a specific user ID.
  • after: Retrieve reports submitted after this date (YYYY-MM-DD) 🗓️.
  • before: Retrieve reports submitted before this date (YYYY-MM-DD) 🗓️.

Data Fields Returned:

  • id: Unique report identifier.

  • reporter_name: Name of the user who submitted the report.

  • reporter_id: ID of the user who submitted the report.

  • standup_id: ID of the standup the report belongs to.

  • created_at: Timestamp when the report was submitted.

  • content: The actual answers/content of the report.

  • post_report

Purpose: Posts a report to Geekbot.

Example Prompt: "Hey, can you post the report for the Daily Standup standup?"

Data Fields Returned:

  • id: Unique report identifier.

  • reporter_name: Name of the user who submitted the report.

  • reporter_id: ID of the user who submitted the report.

  • standup_id: ID of the standup the report belongs to.

  • created_at: Timestamp when the report was submitted.

  • content: The actual answers/content of the report.

  • list_members

Purpose: Lists all team members you share standups with in your Geekbot workspace.

Example Prompt: "Who are the members in my Geekbot workspace?"

Data Fields Returned:

  • id: Unique member identifier.

  • name: Member's full name.

  • email: Member's email address.

  • role: Member's role within Geekbot (e.g., Admin, Member).

  • fetch_poll_results

Purpose: Retrieves specific poll results. Requires a poll id and optionally a date range.

Example Prompt: "Hey, what was decided about the new logo in Geekbot polls?"

Data Fields Returned:

  • total_results: Total number of results.
  • question_results: List of question results.

Prompts 💬

  • weekly_rollup_report

Purpose: Generates a comprehensive weekly rollup report that summarizes team standup responses, highlights key updates, identifies risks and mitigation strategies, outlines next steps, and tracks upcoming launches.

Arguments:

  • standup_id: ID of the standup to include in the rollup report.

Development 🧑‍💻

Interested in contributing or running the server locally?

Setup Development Environment

# 1. Clone the repository
git clone https://github.com/geekbot-com/geekbot-mcp.git
cd geekbot-mcp

# 2. Install uv (if needed)
# curl -LsSf https://astral.sh/uv/install.sh | sh

# 3. Create a virtual environment and install dependencies
uv sync

Running Tests ✅

# Ensure dependencies are installed (uv sync)
pytest

Contributing 🤝

Contributions are welcome! Please fork the repository and submit a Pull Request with your changes.

License 📜

This project is licensed under the MIT License.

Acknowledgements 🙏

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

geekbot_mcp-0.3.3.tar.gz (114.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

geekbot_mcp-0.3.3-py3-none-any.whl (18.0 kB view details)

Uploaded Python 3

File details

Details for the file geekbot_mcp-0.3.3.tar.gz.

File metadata

  • Download URL: geekbot_mcp-0.3.3.tar.gz
  • Upload date:
  • Size: 114.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for geekbot_mcp-0.3.3.tar.gz
Algorithm Hash digest
SHA256 bb715f21da3309441731c80d885aa7ed1bfee2b72ec95f1ad39f2aa7585fa592
MD5 b4c1f43b2adf43ca2c0c8f0077f989b2
BLAKE2b-256 18d98cc4d646cbd46faddc92791f47db7a3ccf7c8138786d1aca0b94bae26e58

See more details on using hashes here.

Provenance

The following attestation bundles were made for geekbot_mcp-0.3.3.tar.gz:

Publisher: pypi-release.yml on geekbot-com/geekbot-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file geekbot_mcp-0.3.3-py3-none-any.whl.

File metadata

  • Download URL: geekbot_mcp-0.3.3-py3-none-any.whl
  • Upload date:
  • Size: 18.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for geekbot_mcp-0.3.3-py3-none-any.whl
Algorithm Hash digest
SHA256 c30e2420f2952ec44f898cafb9e8590f22ef6f8a79f0d1043209c97397da0c57
MD5 d986dbd87205ef41cd11ddcbf5144908
BLAKE2b-256 2ad33f333fbfa70eee337c6966d494255446811ceefc0f00e06e335ddd5cfce4

See more details on using hashes here.

Provenance

The following attestation bundles were made for geekbot_mcp-0.3.3-py3-none-any.whl:

Publisher: pypi-release.yml on geekbot-com/geekbot-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page