MCP Catalogs
首页

reporecall

by proofofwork-agency·30·综合分 44

本地代码库记忆系统,具有AST索引、调用图和业务上下文生成功能,支持Claude Code和MCP代理。

developer-toolsai-llmknowledge-graph
6
Forks
1
活跃 Issue
本月
最近提交
2 天前
收录于

概述

Reporecall是一个全面的本地代码库记忆系统,通过索引代码库提供基于意图的代码检索、自动生成的Wiki页面和交互式架构仪表板。它使用AST索引和调用图实现高效的代码探索和AI编程助手的上下文感知对话。该系统完全离线运行,相比传统方法减少3-8个token,同时保持所有功能在本地机器上。

试试问 AI

装完之后,这里有 5 个你可以让 AI 做的事:

:代码探索和理解大型代码库
:架构文档生成和维护
:AI编程助手上下文增强以支持开发工作流
:Reporecall是否需要云服务或API密钥?
:它如何与不同的AI编程助手集成?

什么时候选它

当您处理需要智能上下文检索、架构可视化的代码库,并希望在 AI 辅助编程中减少 token 使用且无需云依赖时,选择 Reporecall。

什么时候不要选它

如果您需要通过 MCP 工具频繁对代码库进行写入操作,不要选择 Reporecall,因为它似乎主要是专注于上下文检索的只读系统。

此 server 暴露的工具

从 README 抽取出 12 个工具
  • search_code

    Search codebase for specific terms or patterns

  • get_symbol

    Retrieve information about a specific symbol or class

  • resolve_seed

    Resolve a seed query to related code files and context

  • find_callers

    Find all files that call a specific function or symbol

  • find_callees

    Find all functions called by a specific function or symbol

  • explain_flow

    Explain how a code flow works or what calls what

  • build_stack_tree

    Build a stack tree showing function calls and relationships

  • get_imports

    Get all imports for a specific file or symbol

  • list_product_areas

    List business product areas with their descriptions

  • business_context_query

    Query business context and capability information

  • wiki_read

    Read a generated wiki page by slug

  • refresh_context

    Refresh the codebase index and regenerate wiki pages

可对比工具

sourcery-mcpcodegraph-mcpdevinsights-mcp

安装

npm install -g @proofofwork-agency/reporecall

reporecall init          # 创建 .memory/、hooks、MCP 配置
reporecall index         # 索引代码库(构建拓扑图+Wiki)
reporecall serve         # 启动守护进程+文件监视器
reporecall lens --serve  # 打开架构仪表板

对于Claude Desktop集成:

{
  "mcpServers": {
    "reporecall": {
      "command": "npx",
      "args": ["@proofofwork-agency/reporecall", "mcp"],
      "env": {
        "REPORECALL_PROJECT_PATH": "."
      }
    }
  }
}

FAQ

Reporecall是否需要云服务或API密钥?
不需要,Reporecall完全使用SQLite/FTS索引在本地工作。虽然可以配置可选的语义后端,但这不是必需的。
它如何与不同的AI编程助手集成?
它提供三种集成方式:为Claude Code提供自动hooks,为Codex和其他代理提供MCP/CLI访问,以及为任何工具提供结构化的JSON导出。

reporecall 对比

GitHub →

最后更新于 · 由 README + GitHub 公开数据自动生成。