Skip to main content
Glama

Claude MCP Server Integration

by mokemoke0821
App.tsx773 B
import useGameStore from './stores/gameStore'; import GameInterface from './ui/GameInterface'; import ResultsScreen from './ui/ResultsScreen'; import SettingsScreen from './ui/SettingsScreen'; function App() { const { gameActive, showResults } = useGameStore(); return ( <div className="min-h-screen bg-gray-900 text-gray-100"> {/* 背景エフェクト */} <div className="fixed inset-0 bg-gradient-to-br from-gray-900 via-gray-800 to-gray-900 opacity-50" /> {/* メインコンテンツ */} <div className="relative z-10"> {showResults ? ( <ResultsScreen /> ) : gameActive ? ( <GameInterface /> ) : ( <SettingsScreen /> )} </div> </div> ); } export default App;

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/mokemoke0821/claude-mcp-integration'

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