Skip to content
TopicTracker
出典 HackerNews原文を表示
翻訳言語翻訳言語

High-performance code intelligence MCP server

This is a high-performance MCP (Model Context Protocol) server designed for code intelligence. It enables AI assistants to understand and navigate codebases efficiently by providing structured access to code context and metadata.

背景メモ

- **MCP(Model Context Protocol)** は、Anthropicが2024年末に公開した、LLMと外部ツール・データソースを接続するための標準プロトコル。CursorやClaude Desktopなどが対応している。 - この「codebase-memory-mcp」は、大規模コードベースをMCP対応のAIアシスタントから効率的に検索・解析できるようにするサーバー。Rustで書かれているため高速で、コードのシンボル(関数・クラス・変数名など)やgitの変更履歴をベクトル検索できる。 - 従来の「コード全体をプロンプトに貼る」方式ではトークン制限や遅延が問題だったが、このツールはコードベースを事前にベクトル化しておき、必要な部分だけを照会することで、大規模リポジトリでも応答性を保つ。 - 同種のツールとしてSourcegraph CodyやContinue.devなどがあるが、MCP準拠であること、およびRustによるパフォーマンスが特徴。

関連記事

  • Safari Technology Preview 247 introduces the Safari MCP server, a Model Context Protocol server that lets AI agents connect to a Safari browser window to access DOM, network requests, screenshots, and console output for more autonomous web debugging and development.