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

firestore-todo-mcp

v0.1.10

Published

Connect any MCP Client like Claude, Open-WebUI and others to this MCP server to manage todos via AI chat in an opinionated way.

Readme

Firestore Todo List MCP Server

Connect any MCP Client like Claude, Open-WebUI and others to this MCP server to manage todos via AI chat in an opinionated way.

You can simply tell the model to create_todo, list_todos, update_todo, 'complete_todo' and delete_todo

You can setup a custom system prompt as well to get customized answers.

Works very well with Claude, OpenAI and Deepseek models (paid versions). Local models in Ollama also works, but with limitations.

Data is stored on Firebase Firestore because it is "free" for personal usage, easy to run, and easy to setup.

This is an experimental project I created just for learning purposes.

Feel free to try.

Getting Started

Use the Firestore Todo MCP Server on Claude (and others)

Edit the claude_desktop_config.json or the mcp configuration file of your LLM client

{
    "mcpServers": {
        "firestoreTodoMcp": {
            "command": "npx",
            "args": [
                "firestore-todo-mcp"
            ],
            "env": {
                "FIREBASE_SERVICE_ACCOUNT": "base64(serviceAccount.json)",
                "FIREBASE_PROJECT_ID": "your-firebase-project-id",
                "FIRESTORE_COLLECTION": "test_collection"
            },
            "type": "stdio"
        }
    }
}

Don't forget to setup your project on Firebase and to get the Firebase serviceAccount from the project's configuration.

The file content must be 'base64' encoded when passing the value to the json above.

Development Mode

1. Clone the repo

git clone https://github.com/gtoshinakano/firebase-todo-mcp.git
cd firebase-todo-mcp

2.Run Firestore emulator

Install firebase-tools cli, do firebase login, install emulators and run

firebase emulators:start --only firestore --project local-todo-dev

3.Testing on Inspector

Check if all tools are working fine, test input parameters, output params

npx @modelcontextprotocol/inspector \
    -e FIRESTORE_EMULATOR_HOST=localhost:3333 \
    -e FIREBASE_PROJECT_ID=local-todo-dev \
    -e FIRESTORE_COLLECTION=test_collection \
    tsx bin/index.ts

4. (Optional) Build and Configure Claude mcp configuration locally

{
    "mcpServers": {
    "firestore-todo": {
        "command": "node",
        "args": ["/absolute/path/to/dist/bin/index.js"],
        "env": {
        "FIRESTORE_EMULATOR_HOST": "localhost:3333",
        "FIREBASE_PROJECT_ID": "local-todo-dev",
        "FIRESTORE_COLLECTION": "test_collection"
        }
    }
    }
}

5. Create a project with a system prompt from the example

Copy the contents of the system prompts from the path example/

complete: More effective, but token expensive short: Shorter version for saving tokens. Works fine but less accurate

6. Have fun with your new Task Manager ;)

Try chat like: Add the task XYZ. Due date tomorrow.

You can be more specific and tell the situation: I forgot to talk to John regarding XYZ on Friday and I need this ASAP

Or you can be broad and Claude will try to help you split the big task into smaller ones (doesn't work well with Ollama models :/): I need to create my XYZ Vague Project

Deployment to Firebase Cloud Functions

If you expect to use the same functions, deploying this function to Cloud Functions and serve it on http will be enough. If you want to implement longer tools with longer connections, you will have to deploy it on a more robust and dedicated server.

firebase functions:secrets:set SECRET_NAME