Supabase Next.js Server
A simple notes system for Next.js applications using Supabase as the backend.
supabase-nextjs-server MCP Server
A Model Context Protocol server
This is a TypeScript-based MCP server that implements a simple notes system for NextJS. It demonstrates core MCP concepts by providing:
- Resources representing text notes with URIs and metadata
- Tools for creating new notes
- Prompts for generating summaries of notes
Features
Init
- Require
NEXT_PUBLIC_SUPABASE_URLandNEXT_PUBLIC_SUPABASE_ANON_KEYenvironment variables
Resources
- List and access notes via
note://URIs - Each note has a title, content and metadata
- Plain text mime type for simple content access
Tools
create_note- Create new text notes- Takes title and content as required parameters
- Stores note in server state
Prompts
summarize_notes- Generate a summary of all stored notes- Includes all note contents as embedded resources
- Returns structured prompt for LLM summarization
Development
Install dependencies:
npm install
Build the server:
npm run build
For development with auto-rebuild:
npm run watch
Installation
To use with Claude Desktop, add the server config:
On MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
On Windows: %APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"supabase-nextjs-server": {
"command": "/path/to/supabase-nextjs-server/build/index.js"
}
}
}
Installing via Smithery
To install Supabase Notes for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @tengfone/supabase-nextjs-mcp-server --client claude
Debugging
Since MCP servers communicate over stdio, debugging can be challenging. We recommend using the MCP Inspector, which is available as a package script:
npm run inspector
The Inspector will provide a URL to access debugging tools in your browser.
相關伺服器
MCP Neo4j Server
Integrate the Neo4j graph database with clients through natural language interactions.
AIND Metadata
Access and interact with Allen Institute for Neural Dynamics (AIND) metadata directly within your IDE.
Supabase MCP Server
A server for querying and managing data in a Supabase database.
MySQL MCP Server
A read-only MySQL database server for LLMs to inspect schemas and execute queries.
Supabase Coolify MCP Server
Comprehensive MCP server for managing self-hosted Supabase on Coolify with full deployment, migrations, edge functions, and rollback support.
BigQuery
Access Google BigQuery to understand dataset structures and execute SQL queries.
TalkHub Store
Integrates with Supabase to allow AI assistants to access and manage store data.
Macrostrat
Access geologic data from the Macrostrat API, including units, columns, minerals, and timescales.
Pipedrive MCP Server by CData
A read-only MCP server for Pipedrive, enabling LLMs to query live data using the CData JDBC Driver.
MCP Trino Server
Integrates with Trino and Iceberg for advanced data exploration, querying, and table maintenance.