Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Multi-tenant memory system MCP server with vector search and relationships remember-mcp Multi-tenant memory system MCP server with vector search, relationships, and trust-based access control. Value Proposition **remember-mcp** gives AI assistants a persistent, searchable memory system that enables them to: - **Remember Everything**: Store and recall information across conversations - **Find Connections**: Discover relationships between memories using semantic search - **Learn Over Time**: Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Freshness
Last checked 2/25/2026
Best For
@prmichaelsen/remember-mcp is best for mcp, memory, vector-search workflows where MCP compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB MCP, runtime-metrics, public facts pack
Multi-tenant memory system MCP server with vector search and relationships remember-mcp Multi-tenant memory system MCP server with vector search, relationships, and trust-based access control. Value Proposition **remember-mcp** gives AI assistants a persistent, searchable memory system that enables them to: - **Remember Everything**: Store and recall information across conversations - **Find Connections**: Discover relationships between memories using semantic search - **Learn Over Time**:
Public facts
4
Change events
1
Artifacts
0
Freshness
Feb 25, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Trust score
Unknown
Compatibility
MCP
Freshness
Feb 25, 2026
Vendor
Prmichaelsen
Artifacts
0
Benchmarks
0
Last release
2.8.0
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Setup snapshot
git clone https://github.com/prmichaelsen/remember-mcp.gitSetup complexity is MEDIUM. Standard integration tests and API key provisioning are required before connecting this to production workloads.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Prmichaelsen
Protocol compatibility
MCP
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
json
{
"mcpServers": {
"remember": {
"command": "npx",
"args": ["-y", "@prmichaelsen/remember-mcp"],
"env": {
"WEAVIATE_REST_URL": "https://your-instance.weaviate.cloud",
"WEAVIATE_API_KEY": "your-weaviate-api-key",
"OPENAI_EMBEDDINGS_API_KEY": "sk-...",
"FIREBASE_ADMIN_SERVICE_ACCOUNT_KEY": "{\"type\":\"service_account\",\"project_id\":\"your-project\",\"private_key\":\"-----BEGIN PRIVATE KEY-----\\nYOUR_KEY\\n-----END PRIVATE KEY-----\\n\",\"client_email\":\"firebase-adminsdk@your-project.iam.gserviceaccount.com\"}",
"FIREBASE_PROJECT_ID": "your-project-id"
}
}
}
}bash
# Install dependencies npm install # Set up environment cp .env.example .env # Edit .env with your configuration # Run in development npm run dev # Build for production npm run build npm start
typescript
import { wrapServer, JWTAuthProvider } from '@prmichaelsen/mcp-auth';
import { createServer } from '@prmichaelsen/remember-mcp/factory';
const wrapped = wrapServer({
serverFactory: createServer,
authProvider: new JWTAuthProvider({
jwtSecret: process.env.JWT_SECRET
}),
// tokenResolver not needed - remember-mcp is self-managed
resourceType: 'remember',
transport: { type: 'sse', port: 3000 }
});
await wrapped.start();typescript
// One memory, three spaces
{
"id": "abc123",
"spaces": ["the_void", "dogs", "cats"],
"content": "My dog is adorable!",
"author_id": "user123"
}
// Search across spaces
remember_search_space({
spaces: ["the_void", "dogs"],
query: "adorable pets"
})
// Finds memories published to ANY of the requested spacestypescript
// Publish to single space
remember_publish({ memory_id: "abc123", spaces: ["the_void"] })
// Publish to multiple spaces at once!
remember_publish({ memory_id: "abc123", spaces: ["the_void", "dogs", "cats"] })
// Returns: { success: true, token: "xyz789" }typescript
remember_confirm({ token: "xyz789" })
// Returns: {
// success: true,
// space_memory_id: "new-id",
// spaces: ["the_void", "dogs", "cats"]
// }Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB MCP
Editorial quality
ready
Multi-tenant memory system MCP server with vector search and relationships remember-mcp Multi-tenant memory system MCP server with vector search, relationships, and trust-based access control. Value Proposition **remember-mcp** gives AI assistants a persistent, searchable memory system that enables them to: - **Remember Everything**: Store and recall information across conversations - **Find Connections**: Discover relationships between memories using semantic search - **Learn Over Time**:
Multi-tenant memory system MCP server with vector search, relationships, and trust-based access control.
remember-mcp gives AI assistants a persistent, searchable memory system that enables them to:
For AI Assistants:
For Developers:
For Users:
Add to your Claude Desktop MCP configuration:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Linux: ~/.config/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"remember": {
"command": "npx",
"args": ["-y", "@prmichaelsen/remember-mcp"],
"env": {
"WEAVIATE_REST_URL": "https://your-instance.weaviate.cloud",
"WEAVIATE_API_KEY": "your-weaviate-api-key",
"OPENAI_EMBEDDINGS_API_KEY": "sk-...",
"FIREBASE_ADMIN_SERVICE_ACCOUNT_KEY": "{\"type\":\"service_account\",\"project_id\":\"your-project\",\"private_key\":\"-----BEGIN PRIVATE KEY-----\\nYOUR_KEY\\n-----END PRIVATE KEY-----\\n\",\"client_email\":\"firebase-adminsdk@your-project.iam.gserviceaccount.com\"}",
"FIREBASE_PROJECT_ID": "your-project-id"
}
}
}
}
Important:
\\n (double backslash) for newlines in private_key\"# Install dependencies
npm install
# Set up environment
cp .env.example .env
# Edit .env with your configuration
# Run in development
npm run dev
# Build for production
npm run build
npm start
import { wrapServer, JWTAuthProvider } from '@prmichaelsen/mcp-auth';
import { createServer } from '@prmichaelsen/remember-mcp/factory';
const wrapped = wrapServer({
serverFactory: createServer,
authProvider: new JWTAuthProvider({
jwtSecret: process.env.JWT_SECRET
}),
// tokenResolver not needed - remember-mcp is self-managed
resourceType: 'remember',
transport: { type: 'sse', port: 3000 }
});
await wrapped.start();
Memory_{user_id} (per-user isolation)Memory_public (all public spaces)spaces arrayusers/{user_id}/preferences, users/{user_id}/requestsUnified Collection: All public memories stored in single Memory_public collection
Benefits:
Example:
// One memory, three spaces
{
"id": "abc123",
"spaces": ["the_void", "dogs", "cats"],
"content": "My dog is adorable!",
"author_id": "user123"
}
// Search across spaces
remember_search_space({
spaces: ["the_void", "dogs"],
query: "adorable pets"
})
// Finds memories published to ANY of the requested spaces
Publish memories to shared discovery spaces where other users can find them.
"The Void" is a shared space for discovering thoughts and ideas from other users.
// Publish to single space
remember_publish({ memory_id: "abc123", spaces: ["the_void"] })
// Publish to multiple spaces at once!
remember_publish({ memory_id: "abc123", spaces: ["the_void", "dogs", "cats"] })
// Returns: { success: true, token: "xyz789" }
remember_confirm({ token: "xyz789" })
// Returns: {
// success: true,
// space_memory_id: "new-id",
// spaces: ["the_void", "dogs", "cats"]
// }
// Search single space
remember_search_space({ query: "interesting ideas", spaces: ["the_void"] })
// Search multiple spaces at once!
remember_search_space({
query: "cute dog pictures",
spaces: ["the_void", "dogs"]
})
remember_publish - Request to publish memory (generates token)remember_confirm - Confirm any pending actionremember_deny - Cancel any pending actionremember_search_space - Search shared spacesremember_query_space - Ask questions about shared memoriesEnable detailed debug logging with the REMEMBER_MCP_DEBUG_LEVEL environment variable:
# No debug output (production default)
REMEMBER_MCP_DEBUG_LEVEL=NONE
# Only errors
REMEMBER_MCP_DEBUG_LEVEL=ERROR
# Warnings and errors
REMEMBER_MCP_DEBUG_LEVEL=WARN
# Info, warnings, and errors
REMEMBER_MCP_DEBUG_LEVEL=INFO
# Debug, info, warnings, and errors (recommended for development)
REMEMBER_MCP_DEBUG_LEVEL=DEBUG
# Everything including parameter dumps (use with caution)
REMEMBER_MCP_DEBUG_LEVEL=TRACE
Example:
# Enable debug logging for development
REMEMBER_MCP_DEBUG_LEVEL=DEBUG npm run dev
# Enable trace logging for troubleshooting
REMEMBER_MCP_DEBUG_LEVEL=TRACE npm start
⚠️ Security Note: TRACE level includes full parameter dumps and may expose sensitive data. Use only in development environments.
See agent/ directory for:
agent/design/)agent/milestones/)agent/tasks/)MIT
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/mcp-prmichaelsen-remember-mcp/snapshot"
curl -s "https://xpersona.co/api/v1/agents/mcp-prmichaelsen-remember-mcp/contract"
curl -s "https://xpersona.co/api/v1/agents/mcp-prmichaelsen-remember-mcp/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
80
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
74
Expose OpenAPI definition endpoints as MCP tools using the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Rank
72
An actix_web backend for the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/mcp-prmichaelsen-remember-mcp/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/mcp-prmichaelsen-remember-mcp/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/mcp-prmichaelsen-remember-mcp/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/mcp-prmichaelsen-remember-mcp/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/mcp-prmichaelsen-remember-mcp/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/mcp-prmichaelsen-remember-mcp/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"MCP"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_MCP",
"generatedAt": "2026-04-17T03:28:28.023Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "MCP",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "mcp",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "memory",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "vector-search",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "weaviate",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "firebase",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:MCP|unknown|profile capability:mcp|supported|profile capability:memory|supported|profile capability:vector-search|supported|profile capability:weaviate|supported|profile capability:firebase|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Prmichaelsen",
"href": "https://github.com/prmichaelsen/remember-mcp#readme",
"sourceUrl": "https://github.com/prmichaelsen/remember-mcp#readme",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T02:31:26.775Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "MCP",
"href": "https://xpersona.co/api/v1/agents/mcp-prmichaelsen-remember-mcp/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-prmichaelsen-remember-mcp/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-25T02:31:26.775Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/mcp-prmichaelsen-remember-mcp/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-prmichaelsen-remember-mcp/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to @prmichaelsen/remember-mcp and adjacent AI workflows.