MCP Servers

模型上下文协议服务器、框架、SDK 和模板的综合目录。

MCP server by keylime

创建于 10/10/2025
更新于 2 months ago
Repository documentation and setup instructions

Keylime MCP

A Model Context Protocol (MCP) server for Keylime, the remote attestation framework for cloud and edge systems.

Requirements

This MCP server is a helper tool for working with Keylime. You need:

Usage

There are two ways to use this MCP server:

Option 1: With MCP Client (Claude Desktop, Cline, etc.)

Build the server:

make mcp

You can move the binary anywhere you want (e.g., `/usr/local/bin/server).

Add to your MCP client config (e.g., ~/.config/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "keylime": {
      "command": "/full/path/to/keylime-mcp/backend/server",
      "env": {
        "KEYLIME_CERT_DIR": "/full/path/to/keylime/certs/dir"
      }
    }
  }
}

Replace /full/path/to/keylime-mcp with your actual path!

Replace /full/path/to/keylime/certs/dir with your cert directory! Certs should be in /var/lib/keylime/cv_ca but need read permissions.

Restart your MCP client. Done.

Option 2: Web UI (Podman)

make build
make up

Access at http://localhost:3000

Development

Run locally without containers:

# Backend
cd backend && go run *.go

# Frontend
cd frontend && pnpm dev

Commands

  • make build - Build containers
  • make up - Start containers
  • make down - Stop containers
  • make logs - View logs
  • make clean - Remove everything
  • make ps - List containers
  • make help - Show all commands
  • make mcp - Build MCP server binary file

Stack

  • Backend: Go 1.23
  • Frontend: React + TypeScript + Vite + Tailwind + shadcn/ui
  • Container: Podman

About Keylime

Keylime is an open-source remote attestation framework that provides:

  • Measured Boot verification via TPM
  • Runtime Integrity monitoring with IMA
  • Secure Enrollment and key management
  • Policy-based Attestation with automated responses

Contributing

Contributions are welcome! This is an experimental project to explore MCP integration with Keylime.

License

Apache-2.0

Resources

快速设置
此服务器的安装指南

安装命令 (包未发布)

git clone https://github.com/keylime/keylime-mcp
手动安装: 请查看 README 获取详细的设置说明和所需的其他依赖项。

Cursor 配置 (mcp.json)

{ "mcpServers": { "keylime-keylime-mcp": { "command": "git", "args": [ "clone", "https://github.com/keylime/keylime-mcp" ] } } }