npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

fgooglesheet-mcp

v1.0.0

Published

MCP server for fGoogleSheet Google Sheets management via REST API

Downloads

13

Readme

fgooglesheet-mcp

MCP (Model Context Protocol) server for fGoogleSheet — a macOS Google Sheets management application.

This server bridges AI assistants (Claude Code, Claude Desktop, etc.) with fGoogleSheet's REST API, enabling direct Google Sheets operations through natural language.

Architecture

AI Assistant (Claude)
       │
       │ MCP Protocol (stdio)
       ▼
┌─────────────────────┐
│  fgooglesheet-mcp   │
│  (MCP Server)       │
└─────────┬───────────┘
          │ HTTP REST API
          ▼
┌─────────────────────┐
│  fGoogleSheet App   │
│  (port 3013)        │
└─────────┬───────────┘
          │ Google Sheets API v4
          ▼
┌─────────────────────┐
│  Google Sheets      │
└─────────────────────┘

Installation

Option 1: npm global install

npm install -g fgooglesheet-mcp

Option 2: npx (no install)

npx fgooglesheet-mcp

Option 3: From source

git clone https://github.com/nowage/fGoogleSheet.git
cd fGoogleSheet/mcp
npm install
node index.js

Configuration

Claude Code

Add to ~/.claude/settings.json:

{
  "mcpServers": {
    "fgooglesheet": {
      "command": "npx",
      "args": ["-y", "fgooglesheet-mcp"]
    }
  }
}

Claude Desktop

Add to Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "fgooglesheet": {
      "command": "npx",
      "args": ["-y", "fgooglesheet-mcp"]
    }
  }
}

Remote Server

To connect to a remote fGoogleSheet instance:

{
  "mcpServers": {
    "fgooglesheet": {
      "command": "npx",
      "args": ["-y", "fgooglesheet-mcp", "--server=http://192.168.1.100:3013"]
    }
  }
}

Or use the environment variable:

{
  "mcpServers": {
    "fgooglesheet": {
      "command": "npx",
      "args": ["-y", "fgooglesheet-mcp"],
      "env": {
        "FGOOGLESHEET_SERVER": "http://192.168.1.100:3013"
      }
    }
  }
}

Server URL Resolution Order

  1. CLI argument: --server=<url>
  2. Environment variable: FGOOGLESHEET_SERVER
  3. Default: http://localhost:3013

Tools

health_check

Check if the fGoogleSheet REST API server is running.

Parameters: none

Example prompt: "Is fGoogleSheet running?"

add_line

Add a key/value pair to Google Sheets.

Parameters:
  key   (string, required) - Column A content
  value (string, optional) - Column B content (default: "")

Example prompt: "Add 'What is REST API?' to Google Sheets"

find_unanswered

Find rows where column A has content but column B is empty.

Parameters:
  start_row (number, optional) - Start row (default: 2)

Example prompt: "Show me unanswered questions in the spreadsheet"

get_status

Get current application status and configuration.

Parameters: none

Example prompt: "What's the current status of fGoogleSheet?"

find_next_row

Find the next empty row available for data entry.

Parameters:
  start_row (number, optional) - Start row (default: 2)

Example prompt: "What's the next available row?"

Testing with MCP Inspector

npx @modelcontextprotocol/inspector npx fgooglesheet-mcp

This opens a web UI where you can interactively test each tool.

Prerequisites

  • fGoogleSheet.app must be running with REST API enabled
  • REST API server listens on port 3013 by default
  • Node.js >= 18.0.0

License

MIT