convex-mcp-server

convex-mcp-server

3.4

Convex MCP Server is a TypeScript-based server implementing a simple notes system to demonstrate core MCP concepts.

The Convex MCP Server is designed to showcase the fundamental concepts of the Model Context Protocol (MCP) by implementing a straightforward notes system. This server allows users to create, list, and access text notes using URIs. Each note is represented as a resource with a title, content, and associated metadata, and is accessible via a note:// URI. The server supports plain text MIME types for easy content access. Additionally, it provides tools for creating new notes, which are stored in the server's state. The server is built using TypeScript and can be integrated with various platforms, including Claude Desktop, by configuring the server settings. For development, the server offers scripts for installation, building, and auto-rebuilding, as well as debugging tools through the MCP Inspector.

Features

  • {'name': 'Resource Management', 'description': 'List and access notes via note:// URIs with titles, content, and metadata.'}
  • {'name': 'Plain Text Support', 'description': 'Supports plain text MIME type for simple content access.'}
  • {'name': 'Note Creation Tool', 'description': 'Tool for creating new text notes with title and content, stored in server state.'}

MCP Tools

  • create_note: Create new text notes with title and content.

Usage with Different Platforms

Claude Desktop


{
  "mcpServers": {
    "convex-mcp-server": {
      "command": "/path/to/convex-mcp-server/build/index.js"
    }
  }
}