We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/IBM/ibmi-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
'use client'
import Sidebar from '@/components/chat/Sidebar/Sidebar'
import { ChatArea } from '@/components/chat/ChatArea'
import { ToolCallPanel } from '@/components/chat/ToolCallPanel'
import { Suspense } from 'react'
export default function Home() {
// Check if OS_SECURITY_KEY is defined on server-side
const hasEnvToken = !!process.env.NEXT_PUBLIC_OS_SECURITY_KEY
const envToken = process.env.NEXT_PUBLIC_OS_SECURITY_KEY || ''
return (
<Suspense fallback={<div>Loading...</div>}>
<div className="flex h-screen bg-background/80">
<Sidebar hasEnvToken={hasEnvToken} envToken={envToken} />
<ChatArea />
<ToolCallPanel />
</div>
</Suspense>
)
}