Claude Session Continuity

77 tools. 34 can modify or destroy data without limits.

2 destructive tools with no built-in limits. Policy required.

Last updated:

34 can modify or destroy data
43 read-only
77 tools total

Community server · catalogue entry verified 30/06/2026

How to control Claude Session Continuity ↓

What Claude Session Continuity exposes to your agents

Read (43) Write / Execute (32) Destructive / Financial (2)
Critical Risk

The most dangerous Claude Session Continuity tools

34 of Claude Session Continuity's 77 tools can modify, destroy, or commit something on every call — and an agent calls them with no built-in limits.

How to control Claude Session Continuity

PolicyLayer is an MCP gateway — it sits between your AI agents and Claude Session Continuity, and nothing reaches the server without passing your rules. These are the rules we recommend:

Deny destructive operations
{
  "delete_memory": {
    "deny_if": [
      {
        "conditions": [],
        "on_deny": "Blocked by default. Requires approval."
      }
    ]
  }
}

Destructive tools should never be available to autonomous agents without human approval.

Rate limit write operations
{
  "add_task": {
    "limits": [
      {
        "counter": "add_task_per_hour",
        "window": "hour",
        "max": 30,
        "scope": "grant"
      }
    ]
  }
}

Prevents bulk unintended modifications from agents caught in loops.

Cap read operations
{
  "context_get": {
    "limits": [
      {
        "counter": "context_get_per_minute",
        "window": "minute",
        "max": 60,
        "scope": "grant"
      }
    ]
  }
}

Controls API costs and prevents retry loops from exhausting upstream rate limits.

  1. Create a free account and register Claude Session Continuity — nothing to install.
  2. Add these rules — paste them, or build them visually. Tune the limits to your setup.
  3. Point your MCP client (Claude, Cursor, anything) at your gateway URL.
ENFORCE POLICY ON CLAUDE SESSION CONTINUITY →

Instant setup, no code required.

All 77 Claude Session Continuity tools

WRITE 29 tools
Write add_task 프로젝트에 태스크를 추가합니다. Write auto_learn_decision 아키텍처/기술 결정 사항을 자동 기록합니다. 왜 이 선택을 했는지 기록하여 나중에 참조할 수 있습니다. Write auto_learn_dependency 의존성 변경 사항을 자동 기록합니다. 버전 충돌이나 업그레이드 시 참조합니다. Write auto_learn_fix 에러/버그 해결 방법을 자동 기록합니다. 비슷한 에러 발생 시 참조할 수 있습니다. Write auto_learn_pattern 프로젝트의 코드 패턴/컨벤션을 자동 기록합니다. 일관성 유지에 활용됩니다. Write collect_work_feedback /work 작업 완료 시 자동으로 피드백을 수집합니다. 에러, 타임아웃, 불편사항 등을 기록합니다. Write complete_task 태스크를 완료 처리합니다. Write context_update 프로젝트 컨텍스트 업데이트. 작업 종료 시 호출. - currentState: 현재 상태 1줄 요약 (필수) - recentFiles: 최근 수정 파일 (최대 10개) - blockers: 블로커/ Write create_relation 두 메모리 간의 관계를 생성합니다. (지식 그래프) Write graph_connect Create a directed edge between two memories in the knowledge graph. Supports 7 relation types for structured k Write init_project_context 새 프로젝트의 고정 컨텍스트를 초기화합니다. plan.md 기반으로 자동 추출하거나 직접 입력. Write learn 자동 학습 (결정/수정/패턴/의존성). type에 따라 다른 정보 저장: - decision: 기술 결정 (alternatives 포함) - fix: 버그 수정 (solution, preventio Write memory_store Store a piece of knowledge in the memory system. Memories are typed (observation, decision, learning, error, p Write project_init Initialize a new project in the continuity system. Creates records in the project_context and active_context t Write record_filter_pattern API content filtering에 걸린 패턴을 기록합니다. 비슷한 상황 회피에 사용됩니다. Write record_solution 에러 해결 방법을 기록합니다. 에러 해결 후 호출하면 나중에 같은 에러 시 참조 가능. Write record_work_pattern 자주 사용하는 작업 패턴을 기록합니다. Write resolve_feedback 피드백을 해결 완료 처리합니다. Write save_session_history 세션 기록을 DB에 저장합니다. update_session 호출 시 자동으로 호출됩니다. Write session_end Save the current session state before ending a conversation. Persists a summary, completed work, next steps, m Write solution_record Record an error-solution pair in the solution archive. Associates an error signature (the searchable key), opt Write store_memory 새로운 지식/학습/결정 사항을 메모리에 저장합니다. Claude가 배운 것들을 기억합니다. Write task_add Add a new task to a project\ Write task_manage 태스크 관리 (추가/완료/업데이트/목록). action에 따라 다른 동작: - add: 새 태스크 추가 (title 필수) - complete: 태스크 완료 (taskId 필수) - update: Write task_update Update a task\ Write update_active_context 프로젝트의 활성 컨텍스트를 업데이트합니다. 작업 종료 시 호출. Write update_architecture_decision 프로젝트에 아키텍처 결정을 추가합니다. 중요한 기술 결정 시 호출. Write update_session 프로젝트의 SESSION.md를 업데이트하고 DB에 이력을 저장합니다. Write update_task_status 태스크 상태를 변경합니다.
READ 43 tools
Read context_get 프로젝트 컨텍스트 조회. 새 세션 시작 시 필수 호출. - 고정 컨텍스트: 기술 스택, 아키텍처 결정, 코드 패턴 - 활성 컨텍스트: 현재 상태, 최근 파일, 블로커 - 미완료 태스크 (최대 3개) Read detect_platform 프로젝트의 플랫폼을 자동 감지합니다 (Web, Android, Flutter, Server). Read find_connected_memories 특정 메모리와 연결된 모든 메모리를 찾습니다. (지식 그래프 탐색) Read find_solution 비슷한 에러의 해결 방법을 검색합니다. 에러 발생 시 먼저 호출하여 기존 솔루션 확인. Read get_continuity_stats 연속성 시스템 사용 통계를 조회합니다. 시스템이 제대로 활용되고 있는지 평가용. Read get_embedding_status 임베딩 시스템 상태를 확인합니다. Read get_filter_patterns 기록된 content filtering 패턴 목록을 조회합니다. 응답 생성 시 참고용. Read get_memory_stats 메모리 시스템 통계를 조회합니다. Read get_pending_feedbacks 해결되지 않은 피드백 목록을 중요도순으로 조회합니다. Read get_pending_tasks 프로젝트의 미완료 태스크 목록을 조회합니다. /work 시작 시 호출 권장. Read get_project_context 프로젝트의 전체 컨텍스트를 한번에 조회합니다. /work 시작 시 필수 호출. 고정 컨텍스트(기술스택, 아키텍처)와 활성 컨텍스트(현재 상태, 태스크)를 ~650토큰으로 반환합니다. Read get_project_knowledge 프로젝트에서 학습된 모든 지식을 조회합니다. 결정, 해결, 패턴, 의존성 변경 등. Read get_project_stats 프로젝트별 작업 통계를 조회합니다. Read get_safe_output_guidelines 현재 학습된 패턴 기반으로 안전한 출력 가이드라인을 반환합니다. Read get_session 프로젝트의 SESSION.md를 파싱하여 구조화된 데이터로 반환합니다. Read get_session_history 프로젝트의 세션 이력을 조회합니다. Read get_similar_issues 비슷한 에러/이슈의 해결 방법을 검색합니다. 시맨틱 검색으로 유사한 문제를 찾습니다. Read get_tech_stack 프로젝트의 plan.md에서 기술 스택 정보를 추출합니다. Read get_work_patterns 프로젝트의 작업 패턴을 조회합니다. 자주 하는 작업과 성공률을 확인할 수 있습니다. Read graph_explore Traverse the knowledge graph from a starting memory using depth-first search. Returns all connected memories u Read list_projects apps/ 디렉토리의 모든 프로젝트 목록과 상태를 반환합니다. Read memory_get Retrieve full content for one or more memories by ID. Designed as a follow-up to memory_search: first search t Read memory_related Find memories related to a given memory using knowledge graph traversal and/or semantic similarity. Combines t Read memory_search Search stored memories using FTS5 full-text search or semantic/embedding similarity. Default mode returns comp Read memory_stats Get aggregate statistics about the memory system: total count, breakdown by type (observation/decision/learnin Read project_analyze Auto-detect a project\ Read project_status Get a project\ Read projects 프로젝트 목록 및 통계 조회. - project 없으면: 전체 프로젝트 목록 - project 있으면: 해당 프로젝트 상세 정보 각 프로젝트의 플랫폼, 최근 활동, 태스크 현황 포함. Read rebuild_embeddings 모든 메모리의 임베딩을 다시 생성합니다. 모델 업데이트 후 사용합니다. Read recall_by_timeframe 특정 기간의 메모리를 조회합니다. (예: 오늘, 이번주, 지난달) Read recall_memory 키워드로 관련 메모리를 검색합니다. FTS5 전체 텍스트 검색을 사용합니다. Read recall_solution 유사 이슈 해결 방법 검색. 에러 메시지나 이슈 설명으로 과거 해결 사례 검색. FTS + 시맨틱 검색으로 유사 이슈 찾기. Read search_by_tag 태그로 메모리를 검색합니다. Read search_sessions Semantic search across session history using multilingual embeddings (94+ languages). Finds past sessions by m Read search_similar_work 과거에 비슷한 작업을 했는지 검색합니다. 이전 작업 패턴을 참고할 때 유용합니다. Read semantic_search 시맨틱 검색으로 의미적으로 유사한 메모리를 찾습니다. AI 임베딩(all-MiniLM-L6-v2)을 사용합니다. Read session_history Retrieve past session records for a project. Returns an array of session objects ordered by most recent first, Read session_start Load project context at the beginning of a session. Typically auto-invoked by the SessionStart hook, but can b Read session_summary 현재 프로젝트의 컨텍스트 요약 조회. - 토큰 추정치 포함 - 전체 컨텍스트 스냅샷 반환 세션 중간에 컨텍스트 확인 시 사용. Read solution_find Search the solution archive for previously resolved errors. Matches against error signatures, messages, and ke Read solution_suggest Get AI-powered fix suggestions for a current error based on the solution archive. Retrieves the most relevant Read task_list List tasks for a project, filtered by status. Returns an array of task objects with id, title, description, st Read task_suggest Scan project source files for TODO, FIXME, HACK, and XXX comments and return them as suggested tasks. Read-onl

Related servers

Other MCP servers with similar tools — same risk classification, starter policies for each.

Questions about Claude Session Continuity

Can an AI agent delete data through the Claude Session Continuity MCP server? +

Yes. The Claude Session Continuity server exposes 2 destructive tools including delete_memory, memory_delete. These permanently remove resources with no undo. PolicyLayer blocks destructive tools by default so they never reach the upstream server.

How do I prevent bulk modifications through Claude Session Continuity? +

The Claude Session Continuity server has 29 write tools including add_task, auto_learn_decision, auto_learn_dependency. Set a rate limit in your policy -- for example, 10 calls per hour prevents an agent from making more than 10 modifications per hour. PolicyLayer enforces this at the gateway, before calls reach Claude Session Continuity.

How many tools does the Claude Session Continuity MCP server expose? +

77 tools across 4 categories: Destructive, Execute, Read, Write. 43 are read-only. 34 can modify, create, or delete data.

How do I enforce a policy on Claude Session Continuity? +

Register the Claude Session Continuity MCP server in PolicyLayer, apply the suggested rules above (adjust the limits to your use case), and point your AI client at the PolicyLayer proxy URL instead of the server directly. Your agents keep the same tools; PolicyLayer evaluates every call against policy before it executes. Nothing to install, live in minutes.

Enforce policy on every Claude Session Continuity tool call.

Deterministic rules across all 77 Claude Session Continuity tools. Per-identity grants. Full audit log. Live in minutes. Nothing to install.

Instant setup, no code required.

77 Claude Session Continuity tools catalogued and risk-classified — across an index of 43,000+ MCP servers.

// GET IN TOUCH

Have a question or want to learn more? Send us a message.

Message sent.

We'll get back to you soon.