We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Southclaws/storyden'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
"use client";
import { use } from "react";
import { z } from "zod";
import { ComposeScreen } from "src/screens/compose/ComposeScreen";
const QuerySchema = z.object({
id: z.string().optional(),
});
type Props = {
searchParams: Promise<z.infer<typeof QuerySchema>>;
};
export default function Page(props: Props) {
const searchParams = use(props.searchParams);
const params = QuerySchema.parse(searchParams);
return <ComposeScreen editing={params.id} />;
}