mcp-server-on-raspi MCP server
Overview
The MCP Server on Raspberry Pi is a lightweight server project designed for easy note storage and management, implementing a custom URI scheme to access individual notes. # How to use MCP Server on Raspberry Pi? To use this server, you need to install it by following the quickstart instructions. Once installed, you can add notes and generate summaries using provided commands. # Key features of MCP Server on Raspberry Pi? - Custom note:// URI scheme for accessing notes - Single prompt for summarizing notes with style preference (brief/detailed) - Ability to add new notes directly to the server # Use cases of MCP Server on Raspberry Pi?
- Managing personal notes for projects or research.
- Summarizing lengthy notes for quick reference.
- Developing on Raspberry Pi systems for lightweight information storage solutions. # FAQ from MCP Server on Raspberry Pi? - Is the MCP Server compatible with all Raspberry Pi models? > Yes, it is designed to work on any Raspberry Pi model that can run the required network services. - Can I use it for collaborative note-taking? > While it's primarily for individual use, the notifications feature can help sync changes among multiple clients who are connected to the server. - How do I install the MCP Server? > Follow the quickstart instructions provided in the project's documentation linked at the GitHub repository.7:["$","div",null,{"className":"container mx-auto flex flex-col gap-4","children":["$L26","$L27",["$","$L28",null,{"currentProject":{"id":327,"uuid":"286552a4-679c-4575-904d-e733c80e0bf6","name":"mcp-server-on-raspi","title":"mcp-server-on-raspi MCP server","description":null,"avatar_url":"https://avatars.githubusercontent.com/u/17093721?v=4","created_at":"2024-12-13T13:19:51.999Z","updated_at":"2024-12-13T15:09:08.996Z","status":"created","author_name":"daikw","author_avatar_url":"https://avatars.githubusercontent.com/u/17093721?v=4","tags":"[]","category":"developer-tools","is_featured":false,"sort":1,"url":"https://github.com/daikw/mcp-server-on-raspi","target":"_self","content":"$29","summary":"$2a","img_url":null,"type":null,"metadata":null,"user_uuid":null,"tools":null,"sse_url":null,"sse_provider":null,"sse_params":null,"is_official":false,"server_command":null,"server_params":null,"server_config":null,"allow_call":false,"is_innovation":false,"is_dxt":false,"dxt_manifest":null,"dxt_file_url":null,"is_audit":false},"randomProjects":[],"currentServerKey":"$undefined"}]]}]
Add to your AI client
Use these steps to connect mcp-server-on-raspi MCP server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-server-on-raspi-daikw": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-on-raspi-daikw"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-server-on-raspi-daikw": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-on-raspi-daikw"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-server-on-raspi-daikw": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-on-raspi-daikw"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-server-on-raspi-daikw": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-on-raspi-daikw"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-server-on-raspi-daikw": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-on-raspi-daikw"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-server-on-raspi-daikw": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-on-raspi-daikw"
]
}
}
}