We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/hiltonbrown/xero-mcp-with-next-js'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
// Root layout for Next.js app directory
import type { Metadata } from 'next';
import './globals.css';
export const metadata: Metadata = {
title: 'Xero MCP Integration',
description: 'Xero accounting integration with MCP server',
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body className="antialiased">
{children}
</body>
</html>
);
}