Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog
Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Launched onTiny Startupstinystartups.com
Explore
  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Random discovery New
  • Submit a server
  • Pricing & Boost Boost
Learn
  • Guides hub
  • What is MCP?
  • Install guide
  • Build an MCP server
  • Deploy an MCP server
  • Security guide
  • Troubleshooting
  • MCP for SEO & AEO
  • Protocol versioning
  • Blog & updates
Tools
  • All developer tools
  • Config generator
  • Config validator
  • Config auditor
  • MCP playground
  • Token calculator
  • OpenAPI β†’ MCP
  • Badge generator
For agents
  • REST API docs
  • Trust & traffic Live
  • Remote MCP server SSE β†— (opens in a new tab)
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
Company
  • About
  • Advertise Sponsor
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZoneAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZone
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. Databases
  3. Spreadsheet DB
S
Health: Not checked yetWe have not completed a health check for this listing yet.No health check has run yet.

Spreadsheet DB

User RatingsBe the first to rate and review this MCP server! Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View Repository

SQLite-authoritative entity database with an async Google Sheets projection for AI agents.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Client Config & Setup

Choose your client or environment
Target File:~/Library/Application Support/Claude/claude_desktop_config.json
claude_desktop_config.json
{
  "mcpServers": {
    "spreadsheet-db": {
      "command": "npx",
      "args": [
        "-y",
        "spreadsheet-db"
      ]
    }
  }
}

πŸ’‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.

Install Directory Badge Claim listing AlternativesπŸ—„οΈ More in Databases

Documentation Overview

ν•œκ΅­μ–΄ | ζ—₯本θͺž

Hikoutei

Keep your app fast with SQLite. Keep your workflow visible in Google Sheets.

A typed repository and safe write layer for Google Sheets-backed MVPs: your application reads and writes local SQLite through typed entities, and committed changes are asynchronously projected to Google Sheets for human review and lightweight collaboration.

npm Β· Quick start Β· Issues

npm version license TypeScript

What is Hikoutei?

Hikoutei gives TypeScript applications a typed entity API backed by local SQLite, then asynchronously synchronizes committed changes to Google Sheets.

Your application does not wait on Google Sheets for normal reads and writes. Sheets remains available for inspection, operations, and lightweight human collaboration.

Hikoutei is not a raw Sheets API wrapper, not a replacement for PostgreSQL, and it does not treat Google Sheets as the authoritative application database. SQLite is the source of truth; Sheets is the human-facing view.

Quick start

Define a scalar entity and use the local SQLite authority through a request-local manager.

server.ts
import { createTypedSheets, defineTypedSheetsEntity } from "hikoutei";

const User = defineTypedSheetsEntity({
  name: "User",
  tableName: "users",
  properties: {
    id: { type: "string", primary: true },
    name: { type: "string" },
    age: { type: "number" },
    active: { type: "boolean" },
  },
});

const hikoutei = await createTypedSheets({
  dbName: "./hikoutei.sqlite",
  entities: [User],
});

const em = hikoutei.em.fork();
const user = em.create(User, { id: "u1", name: "Ada", age: 36, active: true });
em.persist(user);
await em.flush();

user.name = "Ada Lovelace";
await em.flush();

What happens to the Sheet? The write commits to local SQLite immediately β€” the application request never waits on Google. When the sync service is enabled, Hikoutei later projects the entity to the registered Google Sheet in the background. Human edits made in the sheet are observed, validated, and either accepted back into SQLite or recorded as conflicts, never silently overwritten.

Why Hikoutei?

  • Define typed entities instead of manually converting Sheet rows.
  • Read and write through local SQLite without waiting for Google Sheets.
  • Synchronize committed changes to Sheets in the background.
  • Detect unexpected column changes and duplicate headers.
  • Avoid overwriting newer Sheet edits during conflicting updates.

When to use Hikoutei

Hikoutei is a good fit for:

  • MVPs and prototypes where a spreadsheet is part of the product workflow.
  • Internal tools and low-traffic administrative applications.
  • Teams that want typed application data while keeping Sheets easy for people to inspect.
  • Services that can use SQLite locally and accept asynchronous Sheet updates.

When to choose something else

Use a conventional database and direct Google APIs when you need:

  • Strong transactions across many rows or services.
  • High write throughput or many concurrent writers.
  • Complex queries, joins, or reporting workloads.
  • Multi-server or multi-region coordination.
  • Immediate read-after-write consistency in Google Sheets.
  • Google Sheets to be the primary database for the application.

Is Hikoutei the right abstraction for you?

Hikoutei does not replace google-spreadsheet or @googleapis/sheets β€” it sits one level above them. If you only need raw spreadsheet access, use the API client directly.

CapabilityHikouteigoogle-spreadsheet@googleapis/sheets
Typed entity modelβœ…βŒβŒ
Fast local application readsβœ…βŒβŒ
Async projection to Sheetsβœ…βŒβŒ
Durable write retry and deduplicationβœ…βŒβŒ
Conflict-aware Sheet updatesβœ…βŒβŒ
Direct row and cell manipulationLimitedβœ…βœ…
Full Google Sheets API accessProvider onlyPartialβœ…

Google Sheets setup

Google Sheets synchronization is a service-side concern. Applications do not import a provider client, pass Sheet routes to createTypedSheets(), or choose an operation for each write β€” the root API accepts only dbName and entities. The sync runtime uses one internal Google Sheets API provider with a service account β€” no Apps Script deployment. Sync auto-start is selected by HIKOUTEI_SYNC_SPREADSHEET_URL plus GOOGLE_APPLICATION_CREDENTIALS; there is no public googleSheetsApi bootstrap option to configure.

Fastest path: install the gcloud CLI, then run npx hikoutei setup from your project directory. On an interactive terminal it offers (press Enter) to start gcloud auth login --enable-gdrive-access --force for you when the active account is missing or lacks Drive access β€” you only complete the browser approval yourself. (In --yes, CI, or non-TTY sessions, run that login command yourself first.) Setup then creates the project, service account, and key, creates a spreadsheet owned by your account, shares it with the service account as an Editor, verifies service-account access, and writes GOOGLE_APPLICATION_CREDENTIALS plus HIKOUTEI_SYNC_SPREADSHEET_URL into your .env. The human access token is used in memory only and never stored. Automatic setup runs on macOS and Linux; on Windows a non-dry-run is refused before any mutation and manual setup is available. Interrupted runs resume from a local checkpoint (.hikoutei-setup-state.json); a spreadsheet create whose outcome is unknown is reconciled by its creation marker on the next run and setup never creates a second spreadsheet (inspect Drive and rerun if setup reports sheet_create_uncertain, and a create rejected up front with HTTP 400/403 plus a confirmed-zero marker lookup rolls back to key_ready so a corrected rerun starts a fresh marker). Sharing is write-ahead too: spreadsheet_share_started is persisted before the idempotent SA writer permission ensure and spreadsheet_shared after it, so a crash between the remote permission mutation and the checkpoint write resumes the ensure on the next run and never creates a second spreadsheet. The service-account key is created under a write-ahead contract too: the user-managed key list is recorded as a baseline before the single gcloud key create, and key_create_started/key_ready checkpoints let a crashed run recover a staged or installed key instead of creating a second one. Only the invocation that just persisted key_create_started may issue the one key create; resumed runs are reconcile-only and, when no credential and no post-baseline key are visible, poll the key list plus staged/final evidence for up to two minutes (2, 4, 8, 16, 30, 30, 30 s) before failing with key_create_uncertain β€” the create is never retried automatically. An unmatched user-managed key with no local credential is never deleted automatically β€” setup fails with key_create_uncertain and you inspect the key list in the Google Cloud console before rerunning (a verified-absent state requires removing the setup state file to reset the key checkpoint); reused keys are enforced to owner-only mode 600. An exclusive lock directory (.hikoutei-setup-state.json.lock) prevents concurrent runs and is never removed automatically: a crash leaves an empty lock directory behind, and removing it manually is required only when you are certain no setup is running. Starting fresh requires removing or moving both the checkpoint and the key file, or passing --project to recover an existing key β€” checkpointed or identity-matched cloud resources are reused, and setup never deletes cloud resources. The manual steps below remain available for advanced setups.

Setup progress. hikoutei setup reports step-by-step progress to stderr across the ten setup phases (cloud auth, Drive access, project, APIs, service account, service-account key, spreadsheet, share, service-account access, output): an overall bar advances only when a phase actually completes β€” it is never an ETA and never guesses a percentage β€” and a detail line shows the bounded propagation checks (how many of the eight key/access checks have run) and the known 2, 4, 8, 16, 30, 30, 30 s waits, with a fixed working… label for unknown-duration steps. On an interactive terminal the four-line block redraws in place; in CI, non-TTY, or NO_COLOR sessions one static line is printed per phase/retry event with no control sequences. Progress pauses and the block is cleared during the interactive gcloud auth login handoff and resumes with the retry. Progress never prints credentials, tokens, keys, project ids, emails, paths, or raw command output, and it can never change the setup result or exit code; --dry-run prints the command plan only.

Read the full README on GitHub β†’

Related MCP Servers

View all in Databases View all alternatives
  • Bigquery MCP logoBigquery MCP

    A SnowLeopardAI-managed MCP server that provides access to Google BigQuery data.

    πŸ—„οΈ Databases0 views
    Compare vs Bigquery MCP β†’
  • Genai Toolbox logoGenai Toolbox

    Open source MCP server specializing in easy, fast, and secure tools for Databases.

    πŸ—„οΈ Databases4 views
    Compare vs Genai Toolbox β†’
  • Afgong Sqlite MCP Server logoAfgong Sqlite MCP Server

    Explore your Messages SQLite database to browse tables and inspect schemas with ease. Run flexible…

    πŸ—„οΈ Databases0 views
    Compare vs Afgong Sqlite MCP Server β†’
  • MCP Server Mysql logoMCP Server Mysql

    MySQL database integration in NodeJS with configurable access controls and schema inspection

    πŸ—„οΈ Databases3 views
    Compare vs MCP Server Mysql β†’

Reviews

No reviews yet β€” be the first to share how this listing worked for you.

Frequently Asked Questions about Spreadsheet DB

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "spreadsheet-db": { "command": "npx", "args": ["-y", "Spreadsheet DB"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewSpreadsheet DB AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/spreadsheet-db?style=directory)](https://allmcps.com/mcp/spreadsheet-db)
HTML Embed
<a href="https://allmcps.com/mcp/spreadsheet-db"><img src="https://allmcps.com/api/badge/spreadsheet-db?style=directory" alt="Spreadsheet DB on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ—„οΈDatabases
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging Β· 27/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… FeaturedMoxie Docs MCP logo

Moxie Docs MCP

MCP & Agent Skills for Automated Documentation, and codebase conventions + context

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to unlock edit access and the Official badge and attach your website β€” proof is checked automatically, then reviewed by our team.

Free dofollow backlink: add your website and place the AllMCPs badge on it β€” no claim needed. We detect it automatically and keep it verified as long as the badge stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ—„οΈ Databases β†’Best MCP servers for Databases β†’Alternatives to Spreadsheet DB β†’Install in Claude DesktopInstall in CursorInstall in VS Code