← Registry

AI & Machine Learning

usepalim.com

Manages chat sessions and context for AI interactions by saving, searching, and retrieving session data.

1 endpoint45 known toolsFirst detected July 25, 2026Last detected August 7, 2026

ENDPOINT 1

https://api.usepalim.com/mcp

No auth detected

MCP server metadata

Name
palim
Version
1.0.0
Capabilities
toolsprompts
Server instructions

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_resume

Continue where the user left off.

Inferred read-only
palim_save_context

Default lightweight Palim checkpoint.

Inferred read-only
palim_save_session

Save or append to a chat session with messages and summary.

Inferred read-only
palim_create_connection_url

Create a URL-based connection for the current user.

Potential side effects
palim_search

Search across all saved sessions.

Inferred read-only
palim_get_context

Get formatted context for a specific topic by searching and retrieving relevant sessions.

Inferred read-only
palim_get_session

Retrieve a complete chat session by ID, including all messages and summary.

Inferred read-only
palim_get_sessions

Retrieve multiple chat sessions by ID in one call.

Inferred read-only
palim_show_session

Display a chat session in a readable message-by-message format.

Potential side effects
palim_get_summary

Get only the summary for a session without loading messages.

Inferred read-only
palim_list_summaries

List saved session summaries with optional filters.

Inferred read-only
palim_add_memory

Store a memory, fact, decision, or preference for later retrieval.

Inferred read-only
palim_search_memories

Search through stored memories by query, type, or tags.

Inferred read-only
palim_update_memory

Update one stored memory by ID.

Potential side effects
palim_delete_memory

Permanently delete one stored memory by ID.

Potential side effects
palim_set_user_context

Set the user-specific context block used for personalized AI guidance.

Inferred read-only
palim_get_user_context

Get the current user-specific context block.

Inferred read-only
palim_get_brain

Get the distilled knowledge profile ("Brain").

Inferred read-only
palim_export_brain

Export the entire distilled knowledge profile as an Obsidian-ready markdown vault: an INDEX.

Inferred read-only
palim_update_brain_topic

Edit a brain topic: replace its markdown content, rename it, update its index hook, or delete it.

Potential side effects
palim_backfill_brain

One-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-only
palim_add_user_rule

Add a user rule (workflow/delegation/hints) for personalized guidance.

Inferred read-only
palim_list_user_rules

List all user rules for the current user.

Inferred read-only
palim_update_user_rule

Update an existing user rule by rule_id.

Potential side effects
palim_delete_user_rule

Delete a user rule by rule_id.

Potential side effects
palim_get_user_profile

Get the inferred user profile (if initialized).

Inferred read-only
palim_update_user_profile

Update profile settings (consent/refinement) and optional profile patch.

Potential side effects
palim_delete_session

Delete a chat session.

Potential side effects
palim_register

Register a new Palim account and receive an API key.

Inferred read-only
palim_login

Login with existing credentials and create a new API key.

Potential side effects
palim_logout

Sign out from Palim.

Inferred read-only
palim_browse_sessions

Browse sessions (machine-readable JSON).

Inferred read-only
palim_list_sessions

List saved chat sessions with optional filters (tool_source, tags, status, date range).

Inferred read-only
palim_get_stats

Get statistics about saved chats: total sessions, sessions by tool, recent activity.

Inferred read-only
palim_help

Show an overview of all available Palim tools and usage instructions.

Inferred read-only
palim_update_session_metadata

Update metadata of an existing session (title, tags, status, project, created_at, custom fields).

Potential side effects
palim_update_session_references

Add or update source/reference URLs for an existing session without re-saving messages.

Potential side effects
palim_search_by_date_range

Search sessions by date range + optional tags.

Inferred read-only
palim_export_session

Export a session as Markdown, JSON, or plain text.

Inferred read-only
palim_create_summary

Create a summary for a session that does not have one yet.

Potential side effects
palim_find_similar

Find sessions similar to a given session based on keyword and content similarity.

Inferred read-only
palim_migrate_encryption

Encrypt all plaintext sessions/messages/summaries using the server encryption key.

Inferred read-only
palim_backfill_blind_index

Populate the blind index columns (migration 024) from existing plaintext: session tag and title tokens plus brain topic slug/title/hook.

Inferred read-only
palim_clean_session_tags

Remove 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 effects
palim_repair_brain_hooks

Repair brain hooks and session-log lines that the old sentence splitter truncated mid-clause (entries ending on "inkl.

Inferred read-only

CONNECT 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.

Trust status Neutral

usepalim.com is assessed as Neutral: No suspicious signals found, but no strong positive signal either

Indexed

Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.