Glama
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Glama
MCP
Servers
Retail Supply Chain Analysis MCP
Claim
by
jaydrage
GitHub
E-commerce & Retail
Research & Data
Customer Support
JavaScript
Reddit
Discord
Overview
Inspect
Schema
Related Servers
Reviews
Score
Need Help?
View Source Code
Report Issue
app
api
check-env
app/api/check-env/route.js
import { NextResponse } from 'next/server'; export async function GET() { const apiKey = process.env.ANTHROPIC_API_KEY; return NextResponse.json({ hasKey: !!apiKey, keyLength: apiKey?.length, keyStart: apiKey?.substring(0, 10) + '...', }); }