Skip to main content
Glama
gtoshinakano

Firestore Todo List MCP Server

by gtoshinakano

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
FIREBASE_PROJECT_IDYesYour Firebase project ID
FIRESTORE_COLLECTIONYesThe Firestore collection name to use for storing todos
FIRESTORE_EMULATOR_HOSTNoFirestore emulator host (for development mode only)
FIREBASE_SERVICE_ACCOUNTNoBase64 encoded Firebase service account JSON file

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": true
}
prompts
{
  "listChanged": true
}
resources
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
list_todosB

List todo items from the user's 'todos' store with optional filters.

create_todoB

Add a new todo/task item to the user's store

update_todoC

Update fields of an existing todo item (text, completed, dueDate, role).

complete_todoB

Mark an existing todo item as completed.

delete_todoA

Delete a todo item from the user's Firestore 'todos' collection by id.

Prompts

Interactive templates invoked by user choice

NameDescription
create-todo-guideGuides for adding a new task, following todo manager rules.
complete-todo-guideGuide for completing or partially completing tasks.

Resources

Contextual data attached and managed by the client

NameDescription
todo-manager-specField definitions and semantics for todo items.
todo-manager-tool-rulesWhen and how to use list_todos, create_todo, update_todo, complete_todo, delete_todo.
todo-manager-flow-rulesRules for creating, completing, and splitting tasks.

TDQS

A3.7/5.0

Scored across 5 tools

Disambiguation5/5

Each tool has a clearly distinct purpose targeting specific CRUD operations on todo items: create, list, update, delete, and complete. No overlap exists between tools, making it easy for an agent to select the correct one based on the intended action.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with 'todo' as the noun (e.g., create_todo, list_todos). The naming is uniform, using snake_case throughout, which enhances readability and predictability for agents.

Tool Count5/5

With 5 tools, this server is well-scoped for a todo list domain, covering essential operations without bloat. Each tool earns its place by providing core functionality, making the set efficient and manageable for typical use cases.

Completeness5/5

The toolset offers complete CRUD coverage for todo items, including create, read (list), update, delete, and a specialized complete action. There are no obvious gaps; agents can perform all necessary lifecycle operations without dead ends.

Maintenance

ActivityInactive
ResponsivenessNo issues