We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Philidor-Labs/philidor-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
name: philidor-defi-vaults
description: DeFi vault risk analytics - search vaults, compare risks, analyze protocols using Philidor's Vector Risk Framework
version: 1.0.0
license: MIT
author: Philidor Labs
runtime: node
startCommand:
type: stdio
configSchema:
type: object
properties:
PHILIDOR_API_URL:
type: string
default: "https://api.philidor.io"
description: "Philidor API base URL"
commandFunction:
|-
(config) => ({
command: "npx",
args: ["tsx", "src/stdio.ts"],
env: {
PHILIDOR_API_URL: config.PHILIDOR_API_URL || "https://api.philidor.io"
}
})