Skip to main content
Glama

Industrial MCP Server

by intecrel
providers.tsx439 B
/** * Client-side providers for the application * Wraps the app with NextAuth SessionProvider */ 'use client' import { SessionProvider } from 'next-auth/react' import { ReactNode } from 'react' interface ProvidersProps { children: ReactNode session?: any } export default function Providers({ children, session }: ProvidersProps) { return ( <SessionProvider session={session}> {children} </SessionProvider> ) }

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/intecrel/industrial-mcp'

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