We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/neondatabase-labs/mcp-server-neon'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { Api } from '@neondatabase/api-client';
async function handleDescribeProject(
projectId: string,
neonClient: Api<unknown>,
) {
const { data: branchesData } = await neonClient.listProjectBranches({
projectId: projectId,
});
const { data: projectData } = await neonClient.getProject(projectId);
return {
branches: branchesData.branches,
project: projectData.project,
};
}
export { handleDescribeProject };