sqlite-notes
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@sqlite-notesCreate a note titled Grocery list with body coffee and oranges."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Horizon Notes MCP
A small FastMCP notes server prepared for deployment on Prefect Horizon, with a production Supabase Postgres database managed by Pulumi.
Horizon owns the public deployment boundary: GitHub builds, TLS, OAuth, access control, scaling, preview environments, and request observability. The repository only owns the MCP tools and their application data.
MCP client -> Horizon OAuth gateway -> FastMCP server -> Supabase PostgresThe five tools create, list, read, update, and delete notes in one shared workspace. Horizon decides who can reach that workspace. The server deliberately does not trust undocumented identity headers or pretend that gateway users map to application-level note owners.
Deploy on Horizon
Push this repository to GitHub.
Sign in at horizon.prefect.io and connect the GitHub repository.
Create a server with these values:
Server name:
horizon-notesor another available nameEntrypoint:
server.py:mcpAuthentication: enabled
Environment variable:
FASTMCP_STATELESS_HTTP=true
Provision Supabase by following
infra/README.md, then add the secret PulumidatabaseUrloutput to Horizon asDATABASE_URL.Deploy the server. Horizon detects
pyproject.toml, installs the Python dependencies, and publishes an endpoint such ashttps://horizon-notes.fastmcp.app/mcp.Test every tool in Horizon Inspector or ChatMCP before connecting another client.
Every push to the configured production branch triggers a deployment. Pull requests receive preview deployments, so this branch can be pushed and opened as a PR before it is merged.
Related MCP server: Supabase MCP Server
Connect a client
Use the connection snippet produced by Horizon. For the included Claude Code plugin:
export SQLITE_NOTES_MCP_URL=https://your-server-name.fastmcp.app/mcp
claude plugin marketplace add "$PWD" --scope project
claude plugin install sqlite-notes@mcp-auth-local --scope projectOpen /mcp, choose sqlite-notes, and complete the Horizon sign-in flow.
Run locally
Local HTTP mode intentionally has no authentication. It is for development on loopback only.
uv sync
uv run horizon-notesThe MCP endpoint is http://127.0.0.1:8000/mcp. Without DATABASE_URL, local development falls
back to SQLite at MCP_DATABASE_PATH. Optional variables are documented in .env.example.
Verify the exact object Horizon imports:
uv run fastmcp inspect server.py:mcpTest
uv run pytestEnvironment variables
DATABASE_URL: secret Supabase transaction-pooler URL used by the deployed MCP.FASTMCP_STATELESS_HTTP=true: enables stateless HTTP for Horizon autoscaling.MCP_DATABASE_PATH: optional SQLite path for local development only.MCP_HOSTandMCP_PORT: optional local server bind settings.
Pulumi uses SUPABASE_ACCESS_TOKEN to provision the database. The infrastructure project uses an
ignored local filesystem state backend, so it does not require a Pulumi account, Pulumi Cloud, or
PULUMI_ACCESS_TOKEN. None of the provisioning credentials belong in Horizon. SUPABASE_URL, anon
keys, and service-role keys are not needed because the service uses a direct Postgres connection.
Data boundary
Production notes live in the private horizon_notes Postgres schema, outside Supabase's default
Data API schemas. The MCP creates the schema and table idempotently at startup. Local SQLite remains
available only as a zero-configuration development fallback.
Horizon authentication protects the MCP endpoint. It does not by itself make rows private to each user, so this server correctly describes the notes as shared.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Google Keep-style notes app with an MCP server for AI agents to read/write notes.
Cross-session, cross-device memory for your agent: remember and recall notes. No key to start.
Persistent memory and vector search for AI agents. Hosted, OAuth-protected via Google sign-in.
- TaprootOAuthcom.taproothq
Persistent memory layer for AI tools. Save and recall notes across Claude and other MCP clients.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenancePersonal note management server that enables creating, reading, updating, deleting, listing, and searching notes with support for titles, content, and tags.-
- AlicenseNot gradedqualityDmaintenanceEnables notes management through MCP integration with a Supabase PostgreSQL database, supporting full CRUD operations. It features secure user data isolation using JWT authentication and Row Level Security policies.MIT
- FlicenseBqualityDmaintenanceA simple server for saving, listing, and searching notes persisted to a local JSON file. It enables users to manage their personal notes using natural language via the Model Context Protocol.3-
- FlicenseNot gradedqualityDmaintenanceEnables to create notebooks and notes with tags, and perform full-text search across notes using FTS5 syntax, all stored locally in SQLite.-
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/walkerhughes/mcp-auth'
If you have feedback or need assistance with the MCP directory API, please join our Discord server