We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/leandrogavidia/solx402-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
"use client"
import Hero from "@/components/hero"
import Features from "@/components/features"
import DiagramFlow from "@/components/diagram-flow"
import ToolsReference from "@/components/tools-reference"
import Integration from "@/components/integration"
import Configuration from "@/components/configuration"
import QueryParameters from "@/components/query-parameters"
import PlaygroundSection from "@/components/playground-section"
import Footer from "@/components/footer"
export default function Home() {
return (
<div className="min-h-screen bg-background">
<main>
<Hero />
<PlaygroundSection />
<Features />
<DiagramFlow />
<ToolsReference />
<Integration />
<Configuration />
<QueryParameters />
</main>
<Footer />
</div>
)
}