1. Conduid
  2. Developer Tools
  3. Inboxfewer
MCP server · Developer Tools

Inboxfewer

Archive gmail threads when github issues are closed (now with MCP server)

Unclaimed BSD-3-Clause last commit 6 months ago mcpassistantdevtoolsgmailgithubgoogle
59Fair

Scored 16 hours ago · breakdown

About Inboxfewer

Inboxfewer is an MCP server published by teemow in the Developer Tools category: archive gmail threads when github issues are closed (now with MCP server). It has been installed 0 times through Conduid.

The repository has 1 stars and 0 forks, with the last commit 6 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx inboxfewer

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Inboxfewer

Powered by Claude · Grounded in docs

I know everything about Inboxfewer. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v0.1.4inboxfewer v0.1.4 · 3 Sep 2026Changed (deps)* Update golang:1.27.1-alpine docker digest to cf6fca6 in [#313](https://github.com/teemow/inboxfewer/pull/313) by [@teemow](https://github.com/teemow) Full Changelog**:…
v0.1.3inboxfewer v0.1.3 · 2 Sep 2026Fixed (deps)* Update module google.golang.org/api to v0.297.0 in [#312](https://github.com/teemow/inboxfewer/pull/312) by [@teemow](https://github.com/teemow) Full Changelog**: https://github.com/teemow/inboxfewer/compare/v0.1.2...v0.1.3
v0.1.2inboxfewer v0.1.2 · 2 Sep 2026Changed (deps)* Update golang docker tag to v1.27.1 in [#311](https://github.com/teemow/inboxfewer/pull/311) by [@teemow](https://github.com/teemow) Full Changelog**: https://github.com/teemow/inboxfewer/compare/v0.1.1...v0.1.2
v0.1.1inboxfewer v0.1.1 · 1 Sep 2026Fixed (deps)* Update module google.golang.org/api to v0.296.0 in [#310](https://github.com/teemow/inboxfewer/pull/310) by [@teemow](https://github.com/teemow) Full Changelog**: https://github.com/teemow/inboxfewer/compare/v0.1.0...v0.1.1
v0.1.0inboxfewer v0.1.0 · 31 Aug 2026Added (cleanup)* Add --skip-personal to keep threads that notify you directly in [#309](https://github.com/teemow/inboxfewer/pull/309) by [@luca-rui](https://github.com/luca-rui) Full Changelog**:…

README

Archive Gmail threads for closed GitHub issues and provide MCP server for AI assistants

SYNOPSIS

inboxfewer [command] [options]
inboxfewer cleanup [--account ACCOUNT] [--debug]
inboxfewer serve [--transport TYPE] [--http-addr ADDR] [--yolo] [--debug]

DESCRIPTION

inboxfewer is a tool that archives Gmail threads related to closed GitHub issues and pull requests. It can run as a standalone CLI tool or as a Model Context Protocol (MCP) server, providing AI assistants with programmatic access to Gmail, Google Docs, Google Drive, Google Calendar, Google Meet, and Google Tasks.

INSTALLATION

Container Images

Run with Docker:

# Latest stable release
docker run -p 8080:8080 ghcr.io/teemow/inboxfewer:latest

# Specific version
docker run -p 8080:8080 ghcr.io/teemow/inboxfewer:v1.2.3

Deploy with Helm:

# Install from OCI registry
helm install inboxfewer oci://ghcr.io/teemow/charts/inboxfewer

# With custom configuration
helm install inboxfewer oci://ghcr.io/teemow/charts/inboxfewer \
  --set image.tag=v1.2.3 \
  --values my-values.yaml

See docs/deployment.md for comprehensive deployment documentation.

Binary Installation

Download the latest release for your platform:

# Linux (amd64)
curl -L https://github.com/teemow/inboxfewer/releases/latest/download/inboxfewer_linux_amd64.tar.gz | tar xz

# Linux (arm64)
curl -L https://github.com/teemow/inboxfewer/releases/latest/download/inboxfewer_linux_arm64.tar.gz | tar xz

# macOS (amd64)
curl -L https://github.com/teemow/inboxfewer/releases/latest/download/inboxfewer_darwin_amd64.tar.gz | tar xz

# macOS (arm64)
curl -L https://github.com/teemow/inboxfewer/releases/latest/download/inboxfewer_darwin_arm64.tar.gz | tar xz

# Install to PATH
sudo mv inboxfewer /usr/local/bin/

Or install from source:

go install github.com/teemow/inboxfewer@latest

COMMANDS

cleanup

Archive Gmail threads related to closed GitHub issues and pull requests.

inboxfewer cleanup [--account ACCOUNT]

serve

Start the MCP server to provide tools for AI assistants.

inboxfewer serve [--transport TYPE] [--http-addr ADDR] [--yolo]

Transport Types:

  • stdio: Standard input/output (default, for desktop apps)
  • streamable-http: HTTP streaming (HTTP server on --http-addr)

version

Display version information.

inboxfewer version

generate-docs

Generate markdown documentation for all MCP tools.

inboxfewer generate-docs           # Output to stdout
inboxfewer generate-docs -o FILE   # Output to file

OPTIONS

--account ACCOUNT      Google account name to use (default: "default")
--debug                Enable debug logging
--transport TYPE       MCP transport: stdio, streamable-http (default: stdio)
--http-addr ADDR       HTTP server address for http transport (default: :8080)
--yolo                 Enable write operations in MCP server (default: read-only)

CONFIGURATION

GitHub Token

Create ~/keys/github-inboxfewer.token with:

<github-username> <github-personal-access-token>

Google OAuth

Authentication with Google differs by transport type:

STDIO Transport (desktop): On first run, authenticate via browser. Tokens are cached locally:

  • Linux/Unix: ~/.cache/inboxfewer/google-{account}.token
  • macOS: ~/Library/Caches/inboxfewer/google-{account}.token
  • Windows: %TEMP%/inboxfewer/google-{account}.token

HTTP Transport (deployed): Uses OAuth 2.1 with Dynamic Client Registration. MCP clients authenticate through the server's OAuth proxy, no Google credentials needed on the client side. See docs/mcp-oauth.md for setup.

Multi-Account Support

Manage multiple Google accounts using the --account flag:

inboxfewer cleanup --account work
inboxfewer cleanup --account personal

See docs/configuration.md for details.

EXAMPLES

Archive Gmail threads for closed issues:

inboxfewer cleanup

Start MCP server for Claude Desktop:

inboxfewer serve

Start MCP server with HTTP transport:

inboxfewer serve --transport streamable-http --http-addr :8080

Enable all write operations:

inboxfewer serve --yolo

MCP SERVER

The MCP server provides 66 tools for managing Gmail, Google Docs, Drive, Calendar, Meet, and Tasks. By default, the server operates in read-only mode for safety. Use --yolo to enable write operations.

Key Capabilities:

  • Gmail: List, search, archive, send emails, manage filters
  • Google Docs: Retrieve document content in markdown or text
  • Google Drive: Upload, download, organize, share files
  • Google Calendar: Create events, check availability, schedule meetings
  • Google Meet: Access recordings, transcripts, and notes
  • Google Tasks: Create and manage task lists

See docs/tools.md for the complete tool reference (auto-generated from code).

FILES

~/keys/github-inboxfewer.token           GitHub credentials
~/.cache/inboxfewer/google-*.token       Google OAuth tokens (Linux/Unix)
~/Library/Caches/inboxfewer/google-*.token   Google OAuth tokens (macOS)
%TEMP%/inboxfewer/google-*.token         Google OAuth tokens (Windows)

SEE ALSO

AUTHORS

Original concept by Brad Fitzpatrick. MCP server integration by @teemow.

LICENSE

See LICENSE file for details.

BUGS

Report bugs at: https://github.com/teemow/inboxfewer/issues

README mirrored from the source repository 16 hours ago. The original is authoritative.

Questions

About Inboxfewer

How do I install Inboxfewer?

Run npx inboxfewer, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Inboxfewer safe to use with an AI agent?

Its trust score is 59 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Inboxfewer still maintained?

Yes — the latest release is v0.1.4 (3 Sep 2026), and the last commit was 6 months ago. The repository has 1 stars and 0 open issues.