临时笔记MCP服务器

临时笔记MCP服务器

一个为AI代理提供跨会话和上下文存储临时信息的MCP服务器。

快速入门

  1. 使用npx添加服务器到MCP配置: 在配置文件中加入以下内容: { "mcpServers": { "temp-notes": { "command": "npx", "args": ["-y", "@landicefu/temp-notes-mcp-server"], "disabled": false } } }

  2. 开始使用: 存储信息: await use_mcp_tool({ server_name: "temp-notes", tool_name: "write_note", arguments: { content: "重要内容" } });

    检索信息: const result = await use_mcp_tool({ server_name: "temp-notes", tool_name: "read_note", arguments: {} });