Akto MCP Server
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"akto-mcp-server": {
"env": {
"AKTO_API_KEY": "your_api_key"
},
"args": [
"run",
"--rm",
"--name akto-mcp-server",
"-i",
"-e",
"AKTO_API_KEY",
"akto-api-security/akto-mcp-server:latest"
],
"command": "docker"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Akto MCP Server is a Spring Boot-based Model Context Protocol (MCP) server, designed to provide AI-powered tools and APIs to interact with Akto. It leverages the Spring AI and is container-ready for easy deployment.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in security
An evil MCP server used for redteam testing
Proof primitive for AI agents on MultiversX. Anchor file hashes on-chain as verifiable proofs.
AI-powered reverse engineering assistant that bridges IDA Pro with language models through MCP.
mcpki-server is the backend infrastructure for https://www.mcpki.org, enabling secure public key management and autonomous certificate handling for large language models (LLMs).
MCP Security Weekly
Get CVE alerts and security updates for Akto Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Akto MCP Server is a Spring Boot-based Model Context Protocol (MCP) server, designed to provide AI-powered tools and APIs to interact with Akto. It leverages the Spring AI and is container-ready for easy deployment.
AKTO_API_KEY environment variable (required)git clone <repo-url>
cd akto-mcp-server
./mvnw clean package
Locally:
export AKTO_API_KEY=your_api_key
java -jar target/mcp-1.0.jar
Note: To generate your
AKTO_API_KEY, follow the instructions at the Akto API Reference.
With Docker:
docker build -t akto-mcp-server .
docker run --rm -i -e AKTO_API_KEY=your_api_key akto-mcp-server
You can connect the Akto MCP Server to any MCP-compatible client, such as Claude, Cursor, and others. These clients typically require a configuration specifying how to reach your MCP server.
Below is an example configuration for integrating with an MCP client:
{
"mcpServers": {
"akto-mcp-server": {
"command": "docker",
"args": [
"run",
"--rm",
"--name akto-mcp-server",
"-i",
"-e",
"AKTO_API_KEY",
"akto-api-security/akto-mcp-server:latest"
],
"env": {
"AKTO_API_KEY": "your_api_key"
}
}
}
}
your_api_key with your actual Akto API key.Refer to your MCP client's documentation for the exact location and format of this configuration.
Current Method (as of 2025):
Note: There is currently no file-based config for MCP servers in Cursor. All configuration is managed through the UI.
Reference:
Config File Location:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonSteps:
claude_desktop_config.json file in your preferred text editor."mcpServers" section with your server config:
{
"mcpServers": {
"akto-mcp-server": {
"command": "docker",
"args": [
"run",
"--rm",
"--name akto-mcp-server",
"-i",
"-e",
"AKTO_API_KEY",
"akto-api-security/akto-mcp-server:latest"
],
"env": {
"AKTO_API_KEY": "your_api_key"
}
}
}
}