Skip to main content
Glama

GitMCP

chatPage.tsx479 B
import { useState, useEffect } from "react"; import ChatPageClient from "./.client/chatPage.client"; export default function ChatPageServer({ owner, repo, }: { owner: string | null; repo: string | null; }) { const [client, setClient] = useState(false); useEffect(() => { if (typeof document !== "undefined") { setClient(true); } }, []); if (client) { return <ChatPageClient owner={owner} repo={repo} />; } else { return <div></div>; } }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/idosal/git-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server