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
/**
* NextAuth.js Type Extensions
* Extends default session and user types with Auth0 data
*/
import NextAuth from "next-auth"
declare module "next-auth" {
interface Session {
user: {
id: string
auth0Id: string
name?: string | null
email?: string | null
image?: string | null
}
accessToken?: string
}
interface User {
id: string
auth0Id?: string
}
}
declare module "next-auth/jwt" {
interface JWT {
sub?: string
auth0Id?: string
accessToken?: string
}
}