We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Teapot-Agency/mcp_pipedrive'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
.env.example•1.04 kB
# Pipedrive API Configuration
PIPEDRIVE_API_TOKEN=your_pipedrive_api_token_here
PIPEDRIVE_DOMAIN=your-company.pipedrive.com
# Optional: JWT Authentication
# Uncomment and configure if you need JWT authentication
# MCP_JWT_SECRET=your_jwt_secret_here
# MCP_JWT_TOKEN=your_jwt_token_here
# MCP_JWT_ALGORITHM=HS256
# MCP_JWT_AUDIENCE=your_audience
# MCP_JWT_ISSUER=your_issuer
# When enabled, clients must send `Authorization: Bearer <token>` to /sse and /message endpoints
# Optional: Rate Limiting Configuration
# Default: 250ms minimum time between requests
PIPEDRIVE_RATE_LIMIT_MIN_TIME_MS=250
# Default: 2 concurrent requests maximum
PIPEDRIVE_RATE_LIMIT_MAX_CONCURRENT=2
# Optional: Transport Configuration
# Default: stdio (standard input/output for local use)
# Set to 'sse' for Server-Sent Events (HTTP) transport (required for Docker/remote access)
MCP_TRANSPORT=stdio
# SSE Transport Configuration (only used when MCP_TRANSPORT=sse)
# Default port: 3000
MCP_PORT=3000
# Default message endpoint: /message
MCP_ENDPOINT=/message