drio
Open app

MCP Compliance

Source

An mcp server to support compliance operations in AI agents

Catalog onlyCatalog onlySTDIO

Overview

MCP Compliance is a project that provides a server and CLI tools to support compliance operations for AI agents, specifically focusing on FedRAMP compliance.

To use MCP Compliance, set up the MCP compliance binary, add it to your PATH, clone the repository, and deploy it locally. Configure your AI agent to interact with the MCP compliance server.

  • CLI tools for processing and querying FedRAMP baseline data - An MCP server that exposes compliance data to LLM agents - Detailed guidance for evidence collection related to compliance controls
  1. Assisting organizations in understanding and implementing FedRAMP compliance requirements.
  2. Providing tools for AI agents to interact with compliance data.
  3. Streamlining the evidence collection process for compliance documentation.

Add to your AI client

Use these steps to connect MCP Compliance in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "hackathon-12-mcp-compliance-grafana": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-hackathon-12-mcp-compliance-grafana"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "hackathon-12-mcp-compliance-grafana": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-hackathon-12-mcp-compliance-grafana"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "hackathon-12-mcp-compliance-grafana": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-hackathon-12-mcp-compliance-grafana"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "hackathon-12-mcp-compliance-grafana": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-hackathon-12-mcp-compliance-grafana"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "hackathon-12-mcp-compliance-grafana": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-hackathon-12-mcp-compliance-grafana"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "hackathon-12-mcp-compliance-grafana": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-hackathon-12-mcp-compliance-grafana"
      ]
    }
  }
}

FAQ

What is FedRAMP?

FedRAMP stands for the Federal Risk and Authorization Management Program, which standardizes security assessment and authorization for cloud services.

Is there a way to automate evidence collection?

Currently, the project is working on adding automation for evidence collection in future updates.