mapbox-mcp-runtime-patterns
Audited by Runlayer on Mar 7, 2026
Tool passed security scan
Malicious tool definition detected
Sort by walking time return attractionsWithDistance .map((attr, idx) => ({ ...attr, walkingTime: matrix.durations[0][idx] / 60 })) .sort((a, b) => a.walkingTime - b.walkingTime); } ``` ## Performance Optimization ### Caching Strategy ```typescript class CachedMapboxMCP { private cache = new Map<string, { result: any; timestamp: number }>(); private cacheTTL = 3600000; // 1 hour async callTool(name: string, params: any): Promise<any> { // Cache offline tools indefinitely (deterministic) const off
Tool passed security scan
Passed Files (10)Click to expand
Tool passed security scan
Tool passed security scan
Tool passed security scan
Tool passed security scan
Tool passed security scan
Tool passed security scan
Tool passed security scan
Tool passed security scan
Tool passed security scan
Tool passed security scan