notepad-codes-mcp
v1.0.5
Published
Official MCP Server for securely interacting with Notepad.codes SaaS Platform.
Readme
notepad-codes-mcp
This is the official lightweight local proxy server for Notepad.codes. It uses the Model Context Protocol (MCP) to securely connect AI agents (like Claude Desktop) to your team's live cloud workspace.
How it works
This package runs locally using standard stdio. When an AI agent executes a tool, this proxy seamlessly intercepts the tool arguments and forwards them to the Notepad.codes stateless Vercel API over HTTPS using your personal API key.
Installation & Usage
You do not need to globally install this package. You can simply configure your AI client to execute it via npx.
First, generate a Personal Access Token from your Notepad.codes Dashboard Settings.
Then, configure your claude_desktop_config.json (or any other MCP-compatible client) like this:
{
"mcpServers": {
"team-notepad": {
"command": "npx",
"args": ["-y", "team-notepad-mcp"],
"env": {
"NOTEPAD_API_KEY": "Paste_The_API_Key_From_Your_Dashboard_Here"
}
}
}
}That's it! Claude will automatically download the package via npx and start communicating with your live database securely.
