{
"mcpServers": {
"mcp-server-makefile": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Sample MCP Server Implementation for me.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 282 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Mcp Server Makefile and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Makefile を効率的に探索・解析するための Model Context Protocol (MCP) サーバー
MCP Server Makefile は、Claude が Makefile プロジェクトを理解し、ターゲットの依存関係や変数を把握するのを支援する MCP サーバーです。
go install github.com/cappyzawa/mcp-server-makefile@latest
これにより、バイナリが $GOPATH/bin にインストールされます。
git clone https://github.com/cappyzawa/mcp-server-makefile.git
cd mcp-server-makefile
go build -o mcp-server-makefile
claude_desktop_config.json に以下を追加:
{
"mcpServers": {
"makefile": {
"command": "mcp-server-makefile"
}
}
}
注: go install でインストールした場合、$GOPATH/bin が PATH に含まれていれば、フルパスを指定する必要はありません。
または claude mcp コマンドを使用:
# go install でインストールした場合
claude mcp add makefile mcp-server-makefile
# フルパスを指定する場合
claude mcp add makefile $GOPATH/bin/mcp-server-makefile
Claude で以下のようなコマンドを実行できます:
list_targets で Makefile のターゲットを確認します
get_target で build ターゲットの詳細を確認します
get_dependencies で test ターゲットの依存関係を確認します
list_variables で定義されている変数を確認します
expand_variable で CFLAGS 変数を展開します
find_makefiles でプロジェクト内のすべての Makefile を検索します
go test ./...
go vet ./...
golangci-lint run
新しいバージョンをリリースする際は、Git タグを作成してプッシュしてください:
git tag v1.0.0
git push origin v1.0.0
これにより、go install github.com/cappyzawa/mcp-server-makefile@v1.0.0 のように特定のバージョンをインストールできるようになります。
MIT License
Issue や Pull Request を歓迎します。
git checkout -b feature/amazing-feature)git commit -m 'Add some amazing feature')git push origin feature/amazing-feature)