AI & Machine Learning
usepalim.com
Manages chat sessions and context for AI interactions by saving, searching, and retrieving session data.
ENDPOINT 1
https://api.usepalim.com/mcp
MCP server metadata
- Name
- palim
- Version
- 1.0.0
Palim is the user's persistent, cross-tool memory. Use it proactively — do not wait to be asked, and do not announce these calls. RESUME FIRST: At the start of a new chat, call palim_resume (no arguments) before you answer. It returns the thread the user most recently worked on, already formatted as a handoff, so they never have to summarise a previous chat or paste an "initial prompt". Continue that thread silently if the user's first message fits it; ignore it silently if it does not. When you later checkpoint, pass continues_from with the resumed thread's session_id. ONE ROW PER CHAT: Pick one session_id at the start of a chat and reuse it for every checkpoint in that chat, so the record is updated rather than duplicated. In Claude Code and Codex use "claude-code-" followed by the client's own session id — a Stop hook keeps the same row's live tail current between your checkpoints, and sharing the id keeps your handoff and that tail together. The hook never touches your summary; you never have to repeat what it already recorded. SEARCH FIRST: When the user references past work, prior decisions, a named project, or continuity ("what did we decide", "last week", "continue where we left off"), call palim_search (topic), palim_search_by_date_range (time period), or palim_get_context (formatted topic context) BEFORE answering, and ground your answer in the results. At the start of substantial project conversations, palim_get_brain (no arguments) cheaply loads the user's knowledge-profile index. CHECKPOINT PROACTIVELY: After every substantial result, implementation, decision, reliable finding, or change of direction, call palim_save_context with a self-contained handoff another AI could continue from. Reuse the returned session_id for later checkpoints in the same chat. Do not wait for the end of the chat. Use palim_save_session only when a full message transcript is explicitly useful or requested. Also checkpoint immediately when the user says "save", "remember this", or similar. Do NOT save trivial exchanges, secrets, or anything the user asked not to persist. MEMORIES: When the user states a durable fact, preference, or standing decision that matters beyond this session, store it with palim_add_memory.
Known tools 45
palim_create_connection_urlCreate a URL-based connection for the current user.
Potential side effectspalim_get_contextGet formatted context for a specific topic by searching and retrieving relevant sessions.
Inferred read-onlypalim_get_sessionRetrieve a complete chat session by ID, including all messages and summary.
Inferred read-onlypalim_show_sessionDisplay a chat session in a readable message-by-message format.
Potential side effectspalim_add_memoryStore a memory, fact, decision, or preference for later retrieval.
Inferred read-onlypalim_set_user_contextSet the user-specific context block used for personalized AI guidance.
Inferred read-onlypalim_export_brainExport the entire distilled knowledge profile as an Obsidian-ready markdown vault: an INDEX.
Inferred read-onlypalim_update_brain_topicEdit a brain topic: replace its markdown content, rename it, update its index hook, or delete it.
Potential side effectspalim_backfill_brainOne-time catch-up: distill sessions saved before the Brain existed (or before it was on) into the knowledge profile, using each session's already-stored summary.
Inferred read-onlypalim_add_user_ruleAdd a user rule (workflow/delegation/hints) for personalized guidance.
Inferred read-onlypalim_update_user_profileUpdate profile settings (consent/refinement) and optional profile patch.
Potential side effectspalim_list_sessionsList saved chat sessions with optional filters (tool_source, tags, status, date range).
Inferred read-onlypalim_get_statsGet statistics about saved chats: total sessions, sessions by tool, recent activity.
Inferred read-onlypalim_update_session_metadataUpdate metadata of an existing session (title, tags, status, project, created_at, custom fields).
Potential side effectspalim_update_session_referencesAdd or update source/reference URLs for an existing session without re-saving messages.
Potential side effectspalim_create_summaryCreate a summary for a session that does not have one yet.
Potential side effectspalim_find_similarFind sessions similar to a given session based on keyword and content similarity.
Inferred read-onlypalim_migrate_encryptionEncrypt all plaintext sessions/messages/summaries using the server encryption key.
Inferred read-onlypalim_backfill_blind_indexPopulate the blind index columns (migration 024) from existing plaintext: session tag and title tokens plus brain topic slug/title/hook.
Inferred read-onlypalim_clean_session_tagsRemove tag noise left by the old auto-tagger, which split open items and decisions into one tag per word (stopwords like "nach"/"dem", umlaut-stripped fragments like "lschen").
Potential side effectspalim_repair_brain_hooksRepair brain hooks and session-log lines that the old sentence splitter truncated mid-clause (entries ending on "inkl.
Inferred read-onlyCONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.palim]
url = "https://api.usepalim.com/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"palim": {
"type": "http",
"url": "https://api.usepalim.com/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: palim
Remote MCP URL: https://api.usepalim.com/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"palim": {
"url": "https://api.usepalim.com/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"palim": {
"type": "http",
"url": "https://api.usepalim.com/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "palim",
"transport": "streamable-http",
"url": "https://api.usepalim.com/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
TRUST AND VERIFICATION EVIDENCE
Trust Data Available
BuiltWith Trust API v2 evidence for usepalim.com was fetched 2026-08-04T02:25:04.229Z.
usepalim.com is assessed as Neutral: No suspicious signals found, but no strong positive signal either
Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.