{
"mcpServers": {
"perptools-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.
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 20 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 Perptools Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
All neccessary documentation alavailable in https://suzik.gitbook.io/perptools-mcp/
But you can also use this instructions to use MCP.
Install, configure, and run the Perptools MCP server in a few steps.
git clone <repo-url>
cd mcp-server
go mod download
go build -o mcp-server ./app/cmd
docker build -t perptools-mcp .
docker run -p 8080:8080 --env-file .env perptools-mcp
cp .env.template .env
# Edit .env with your values
docker-compose up -d
The image uses a non-root user and minimal Alpine base.
Configure the server via environment variables.
| Variable | Default | Description |
|----------|---------|--------------|
| TRANSPORT | sse | sse or stdio |
| ADDR | :8080 | Bind address (SSE) |
| BASE_PATH | /mcp | URL path prefix |
| BASE_URL | (empty) | Public base URL (e.g. for CORS) |
| SOLANA_RPC_URL | https://api.mainnet-beta.solana.com | Solana RPC endpoint |
| MCP_PORT | 8080 | Port (Docker Compose) |
Note:
SOLANA_PRIVATE_KEYis used only in integration tests, not by the server. Signing is performed by the client (wallet, MCP, or user).
TRANSPORT=sse
ADDR=:8080
BASE_PATH=/mcp
SOLANA_RPC_URL=https://api.mainnet-beta.solana.com
TRANSPORT=sse go run ./app/cmd
Connect to http://localhost:8080/mcp/sse (or your deployed URL).
prepare_registration → sign → complete_registrationprepare_orderly_key → sign → complete_orderly_keycreate_order: symbol=PERP_ETH_USDC, order_type=MARKET, side=BUY, order_quantity=0.005
| Mode | Use Case | Endpoint |
|------|----------|----------|
| SSE | Web, remote clients | BASE_PATH/mcp/sse (default /mcp/sse) |
| stdio | Local CLI, AI agents | stdin/stdout |
Add to your AI agent's MCP settings. Example for Cursor:
{
"mcpServers": {
"perptools": {
"url": "http://localhost:8080/mcp/sse"
}
}
}
Replace localhost:8080 with your deployed URL if applicable.