project-notes MCP Server
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., "@project-notes MCP ServerAdd a note: auth module was refactored to use JWT"
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.
project-notes MCP Server
A custom Model Context Protocol (MCP) server written in TypeScript. It lets AI clients store, search, and summarize short notes about a codebase during a coding session.
Overview
This server exposes project notes through MCP tools (for actions) and a resource (for read-only context). It uses stdio transport, which makes it compatible with local AI clients like Cursor and Claude Desktop.
Notes are kept in memory for the lifetime of the server process. They are useful as a session scratchpad, not as permanent project documentation.
Features
Capability | Type | Description |
| Tool | Add a note with a title and content |
| Tool | Search notes by keyword in title or content |
| Resource | Return note count and a list of all note titles |
Tech Stack
Runtime: Node.js (ESM)
Language: TypeScript
MCP SDK:
@modelcontextprotocol/sdkValidation: Zod (auto-generates JSON Schema for tool inputs)
Transport: stdio
Project Structure
mcp1/
├── src/
│ └── index.ts # Server entry point
├── dist/
│ └── index.js # Compiled output
├── .cursor/
│ └── mcp.json # Cursor MCP configuration
├── package.json
├── tsconfig.json
└── README.mdRequirements
Node.js 18+
npm
Installation
npm installBuild
npm run buildThis compiles TypeScript from src/ into dist/.
Run
npm startThe server communicates over stdio and waits for MCP client messages. Debug output is written to stderr only — never use console.log, as stdout must remain reserved for JSON-RPC.
On startup you should see:
[project-notes] Server startedClient Configuration
Cursor
Add or update .cursor/mcp.json in your project root:
{
"mcpServers": {
"project-notes": {
"command": "node",
"args": ["/absolute/path/to/mcp1/dist/index.js"]
}
}
}Replace the path with the absolute path to your built dist/index.js. Reload MCP servers in Cursor settings after building.
Claude Desktop
Add to your Claude Desktop config:
Platform | Config path |
macOS |
|
Windows |
|
{
"mcpServers": {
"project-notes": {
"command": "node",
"args": ["/absolute/path/to/mcp1/dist/index.js"]
}
}
}Restart Claude Desktop after saving.
Testing
Use the official MCP Inspector for interactive testing:
npm run build
npx @modelcontextprotocol/inspector node dist/index.jsFrom the inspector UI you can:
Call
add_notewithtitleandcontentCall
search_noteswith aqueryRead the
notes://summaryresource
Usage Examples
Once connected to a client, you can ask the AI to:
Add a note: “Add a note: auth module was refactored to use JWT”
Search notes: “Search notes for auth”
List notes: “What project notes do we have?”
Example tool inputs:
{
"title": "Auth refactor",
"content": "JWT tokens now replace session cookies in src/auth/"
}{
"query": "auth"
}Implementation Details
Tools vs Resources
Tools are for actions the model can invoke (
add_note,search_notes).Resources provide context the host can read without a tool call (
notes://summary).
Using a resource for summaries avoids adding extra tools and helps keep the tool list small.
Input Validation
Tool parameters are defined with Zod schemas. The MCP SDK converts these into JSON Schema so clients know what inputs each tool accepts.
Error Handling
The add_note tool wraps logic in a try/catch and returns isError: true on failure. This tells the model the call failed instead of treating the response as a successful result.
Response Format
All tool handlers return MCP content blocks:
{
content: [{ type: "text", text: "..." }]
}In-Memory Storage
Notes are stored in a simple array inside the running process:
const notes: { title: string; content: string; ts: string }[] = [];Notes are cleared when the server process restarts or the MCP client reloads the server.
Scripts
Command | Description |
| Compile TypeScript to |
| Run the compiled server |
| Build and run in one step |
License
MIT
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.
Latest Blog Posts
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/jupiter-ai0211/sample-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server