analyzify/risify-mcp-public
MCP server for the Risify GraphQL API — helps AI assistants search the schema and write correct queries/mutations.
Platform-specific configuration:
{
"mcpServers": {
"risify-mcp-public": {
"command": "npx",
"args": [
"-y",
"risify-mcp-public"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
A Model Context Protocol (MCP) server for the Risify GraphQL API. Helps AI assistants search the schema and write correct GraphQL queries and mutations.
curl -sL https://raw.githubusercontent.com/analyzify/risify-mcp-public/main/install.sh | shThis auto-detects your OS and architecture, downloads the latest binary, and installs it to /usr/local/bin.
Supported platforms: macOS (Intel/Apple Silicon), Linux (amd64/arm64)
Download the binary for your platform from the Releases page, extract it, and place it somewhere in your $PATH.
risify-mcp versionAdd to your MCP client configuration:
Claude Code (.claude/settings.json):
{
"mcpServers": {
"risify": {
"command": "risify-mcp",
"args": ["serve"],
"env": {
"RISIFY_API_URL": "http://localhost:2136/app/query",
"RISIFY_TOKEN": "your-jwt-token"
}
}
}
}Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"risify": {
"command": "risify-mcp",
"args": ["serve"],
"env": {
"RISIFY_API_URL": "http://localhost:2136/app/query",
"RISIFY_TOKEN": "your-jwt-token"
}
}
}
}Cursor / VS Code (MCP settings):
{
"risify": {
"command": "risify-mcp",
"args": ["serve"],
"env": {
"RISIFY_API_URL": "http://localhost:2136/app/query",
"RISIFY_TOKEN": "your-jwt-token"
}
}
}> Without env vars, the server works in schema-only mode (search + full schema tools).
| Variable | Required | Default | Description | |----------|----------|---------|-------------| | RISIFY_API_URL | no | Production API | GraphQL endpoint URL | | RISIFY_TOKEN | no | — | JWT token for token: <token> header |
risify-mcp serve Loading reviews...