{
"mcpServers": {
"akto-mcp-server": {
"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.
Akto MCP Server
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 302 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 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"
}
}
}
}