MCP Server
Maintained
MIT
io.github.bighippoman/memoir MCP Server
io.github.bighippoman/memoir
What is the io.github.bighippoman/memoir MCP server?
Structured session journals for AI agents. Persistent memory across sessions.
How to install io.github.bighippoman/memoir
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
MEMOIR_MAX_CONTENTMax characters for content fields
MEMOIR_MAX_OUTCOMEMax characters for outcome/resolution fields
MEMOIR_MAX_ENTRIESMax entries per session
MEMOIR_MAX_SESSIONSMax sessions per project (rolling)
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"memoir": {
"command": "npx",
"args": [
"-y",
"memoir-mcp"
],
"env": {
"MEMOIR_MAX_CONTENT": "<YOUR_MEMOIR_MAX_CONTENT>",
"MEMOIR_MAX_OUTCOME": "<YOUR_MEMOIR_MAX_OUTCOME>",
"MEMOIR_MAX_ENTRIES": "<YOUR_MEMOIR_MAX_ENTRIES>",
"MEMOIR_MAX_SESSIONS": "<YOUR_MEMOIR_MAX_SESSIONS>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"memoir": {
"command": "npx",
"args": [
"-y",
"memoir-mcp"
],
"env": {
"MEMOIR_MAX_CONTENT": "<YOUR_MEMOIR_MAX_CONTENT>",
"MEMOIR_MAX_OUTCOME": "<YOUR_MEMOIR_MAX_OUTCOME>",
"MEMOIR_MAX_ENTRIES": "<YOUR_MEMOIR_MAX_ENTRIES>",
"MEMOIR_MAX_SESSIONS": "<YOUR_MEMOIR_MAX_SESSIONS>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"memoir": {
"command": "npx",
"args": [
"-y",
"memoir-mcp"
],
"env": {
"MEMOIR_MAX_CONTENT": "<YOUR_MEMOIR_MAX_CONTENT>",
"MEMOIR_MAX_OUTCOME": "<YOUR_MEMOIR_MAX_OUTCOME>",
"MEMOIR_MAX_ENTRIES": "<YOUR_MEMOIR_MAX_ENTRIES>",
"MEMOIR_MAX_SESSIONS": "<YOUR_MEMOIR_MAX_SESSIONS>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"memoir": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"memoir-mcp"
],
"env": {
"MEMOIR_MAX_CONTENT": "<YOUR_MEMOIR_MAX_CONTENT>",
"MEMOIR_MAX_OUTCOME": "<YOUR_MEMOIR_MAX_OUTCOME>",
"MEMOIR_MAX_ENTRIES": "<YOUR_MEMOIR_MAX_ENTRIES>",
"MEMOIR_MAX_SESSIONS": "<YOUR_MEMOIR_MAX_SESSIONS>"
}
}
}
}Claude Code
claude mcp add memoir --env MEMOIR_MAX_CONTENT=<YOUR_MEMOIR_MAX_CONTENT> --env MEMOIR_MAX_OUTCOME=<YOUR_MEMOIR_MAX_OUTCOME> --env MEMOIR_MAX_ENTRIES=<YOUR_MEMOIR_MAX_ENTRIES> --env MEMOIR_MAX_SESSIONS=<YOUR_MEMOIR_MAX_SESSIONS> -- npx -y memoir-mcpRelated MCP servers
Intercept
Active
Give your AI the ability to read the web. Fetches URLs as clean markdown with multi-tier fallback.
7
View repository →TypeScript
MIT
io.github.bighippoman/license-compliance
Maintained
Scan npm dependencies for license compliance issues. Catch GPL contamination.
0
View repository →TypeScript
MIT