| English | δΈζ |
A TypeScript tool for auditing all interactions with MCP (Model Context Protocol) servers. It intercepts and logs all I/O operations from MCP servers through a transparent proxy approach, generating comprehensive audit logs to help developers debug, monitor, and ensure compliance in MCP applications.
As a library (recommended):
npm install mcp-auditor
From source:
git clone https://github.com/algovate/mcp-auditor.git
cd mcp-auditor
npm install
npm run build
As a global CLI:
npm install -g mcp-auditor
Using global CLI (after npm install -g mcp-auditor):
# Set environment variables
export MCP_WRAPPED_SERVER_COMMAND=npx
export MCP_WRAPPED_SERVER_ARGS="-y,@modelcontextprotocol/server-filesystem,/tmp"
export MCP_LOG_FILE=./logs/mcp-server.log
# Run the server
mcp-auditor
Using configuration file:
# Create config.json
cat > config.json << EOF
{
"name": "mcp-auditor-server",
"version": "1.0.0",
"wrappedServer": {
"serverCommand": "npx",
"serverArgs": ["-y", "@modelcontextprotocol/server-filesystem", "/tmp"],
"logFilePath": "./logs/mcp-server.log"
}
}
EOF
# Run with config
export MCP_CONFIG_FILE=./config.json
mcp-auditor
From source:
# Configure environment variables
export MCP_WRAPPED_SERVER_COMMAND=npx
export MCP_WRAPPED_SERVER_ARGS="-y,@modelcontextprotocol/server-filesystem,/tmp"
export MCP_LOG_FILE=./logs/mcp-server.log
# Start the server
npm start
import { MCPWrapper } from 'mcp-auditor';
const wrapper = new MCPWrapper({
serverCommand: 'npx',
serverArgs: ['-y', '@modelcontextprotocol/server-filesystem', '/tmp'],
logFilePath: './logs/mcp-wrapper.log'
});
await wrapper.connect();
const tools = wrapper.getTools();
const result = await wrapper.callTool('read_file', { path: '/tmp/example.txt' });
await wrapper.disconnect();
For comprehensive documentation, please see:
mcp-auditor/
βββ src/
β βββ core/ # Core wrapper functionality
β β βββ wrapper.ts # Main MCPWrapper class
β β βββ logger.ts # Logger implementation
β β βββ types.ts # TypeScript types
β βββ server/ # Server-specific code
β β βββ server.ts # MCP server implementation
β β βββ config.ts # Configuration loader
β βββ index.ts # Main entry point
βββ examples/
β βββ library/ # Library usage examples
β βββ server/ # Server usage examples
βββ docs/ # Documentation
βββ dist/ # Compiled output
βββ logs/ # Log files
MIT
For detailed usage instructions, API documentation, and examples, please refer to the full documentation.