We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/matt1as/booli-mcp-cc'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
run-server.sh•528 B
#!/bin/bash
# Booli MCP Server Wrapper Script
# This script ensures the proper environment for Claude Desktop
# Set up environment
export PATH="/Users/mattias/.nvm/versions/node/v24.0.1/bin:$PATH"
export NODE_PATH="/Users/mattias/.nvm/versions/node/v24.0.1/lib/node_modules"
# Set Booli API configuration
export BOOLI_GRAPHQL_URL="https://www.booli.se/graphql"
# Change to server directory
cd "/Users/mattias/Developer/booli-mcp-cc"
# Run the server
exec "/Users/mattias/.nvm/versions/node/v24.0.1/bin/node" "dist/index.js"