We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/atombreak/theneo-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/**
* Test data for validation tests
*/
export const validCreateProjectInput = {
name: "Test API",
workspaceId: "ws_test123",
publish: false,
isPublic: false,
descriptionGeneration: "FILL" as const,
};
export const validImportProjectInput = {
projectId: "proj_abc123",
publish: true,
importOption: "MERGE" as const,
file: "./test.json",
};
export const validCreateVersionInput = {
name: "v2.0",
projectId: "proj_abc123",
isDefault: false,
};
export const invalidCreateProjectInput = {
// Missing required 'name' field
workspaceId: "ws_test123",
};
export const invalidImportProjectInput = {
// Missing both projectId and projectName
publish: true,
};