Resurgo-MCP
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., "@Resurgo-MCPsearch my notes for 'project planning' and show what's due today"
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.
Resurgo MCP Server
Official MCP (Model Context Protocol) server for Resurgo - your ideas rise again.
What is Resurgo?
Resurgo helps you capture important information (URLs, notes, ideas) and forces them to resurface at scheduled times - via email digests, browser new tab override, and AI assistant integration. Never lose track of what matters.
Related MCP server: Open-Brain
Installation
npm install resurgo-mcp
# or
pnpm add resurgo-mcpQuick Start
Get Your API Key
Log in to Resurgo
Go to Settings → API
Click Create API Key
Copy your key
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"resurgo": {
"command": "npx",
"args": ["resurgo-mcp"],
"env": {
"RESURGO_API_KEY": "your_api_key_here"
}
}
}
}Optional: Override the API URL (for self-hosted instances):
{
"mcpServers": {
"resurgo": {
"command": "npx",
"args": ["resurgo-mcp"],
"env": {
"RESURGO_API_KEY": "your_api_key_here",
"RESURGO_API_URL": "https://your-instance.com/api"
}
}
}
}Available Tools
The MCP server provides 5 tools for managing your knowledge:
1. search_nodes
Search your saved items with full-text search and filters.
{
query: string; // Search term
tags?: string[]; // Filter by tags
status?: 'active' | 'parked' | 'done' | 'archived';
limit?: number; // Max results (default: 20)
}Example:
"Search my Resurgo nodes for 'react hooks' with the tag 'development'"
2. get_due_items
Get items that are due for review today (your inbox).
{
includeOverdue?: boolean; // Include overdue items (default: true)
}Example:
"Show me what's due in my Resurgo inbox today"
3. quick_capture
Save a new item with optional scheduling.
{
title: string; // Item title
note?: string; // Optional notes
url?: string; // Optional URL
tags?: string[]; // Tags for organization
resurfaceIn?: string; // When to resurface (see below)
}Scheduling options:
"tomorrow"- Resurface tomorrow at 9am"next week"or"1 week"- In 7 days"2 weeks"- In 14 days"next month"or"1 month"- In 30 days"2025-06-15"- Specific ISO date
Example:
"Save this URL to Resurgo: https://react.dev/learn with the note 'Review new hooks API' and resurface next week"
4. snooze_node
Defer an item to resurface later.
{
nodeId: string; // Item UUID
until: string; // When to resurface (same format as quick_capture)
}Example:
"Snooze this Resurgo item until tomorrow"
5. complete_node
Mark an item as done.
{
nodeId: string; // Item UUID
}Example:
"Mark this Resurgo item as complete"
How It Works
The MCP server connects to your Resurgo account via API and provides AI assistants like Claude with tools to:
Search through your saved knowledge
Capture new items during conversations
Schedule when items should resurface
Manage your inbox (snooze, complete, etc.)
This means you can have natural conversations like:
"Search my Resurgo notes about TypeScript patterns and create a new note summarizing the key points to review next week"
The AI will use the MCP tools to search, synthesize the information, and create a scheduled note automatically.
Use Cases
Research Management: Save articles, papers, and links during research sessions
Learning: Schedule spaced repetition for concepts you're learning
Project Planning: Capture ideas and schedule them for review at the right time
Meeting Notes: Save action items and have them resurface before deadlines
Reading List: Never lose track of articles you want to read
Requirements
Node.js 20+
Active Resurgo account (sign up)
Resurgo API key (create one)
MCP-compatible AI assistant (Claude Desktop, etc.)
Support
Issues: GitHub Issues
Privacy & Security
API Key Authentication: Secure token-based access
Scoped Access: API keys are tied to your account and can be revoked anytime
HTTPS Only: All communication encrypted in transit
License
MIT License - see LICENSE for details
Made with ❤️ by Code Atlantic
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseBqualityDmaintenanceEnables indexing and retrieving notes with full-text search using SQLite, plus building knowledge graphs to find relationships between concepts. Supports natural language note management, tagging, and semantic connections.16
- AlicenseBqualityDmaintenancePersonal knowledge graph with 16 MCP tools. Auto-links, deduplicates, tracks themes, synthesizes insights.178MIT
- Alicense-qualityDmaintenanceEnables storing, searching, and discovering knowledge connections using associative memory, with semantic search, hierarchical organization, and cross-environment sync.1MIT
- Alicense-qualityAmaintenanceLocal markdown notes for any MCP client: ranked + semantic search, tags, todos, a wiki-link knowledge graph, daily notes, templates, and slash-command workflows. Pure-JS, local, no API keys.131MIT
Related MCP Connectors
Search everything you save: YouTube, articles, podcasts, PDFs, Notion, Obsidian. API key or OAuth.
Search, save, and set reminders in your personal MarkIt library of links, posts, and notes.
Search your Obsidian vault to quickly find notes by title or keyword, summarize related content, a…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/code-atlantic/Resurgo-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server