We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/apolosan/design_patterns_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
blob-object.json•654 B
{
"id": "blob-object",
"name": "Blob Object Anti-Pattern",
"category": "Anti-Pattern",
"description": "An object that holds too much data or has grown too large without proper organization",
"when_to_use": "Objects with excessive data\nPoor data organization\nSingle objects handling multiple concerns",
"drawbacks": "Memory inefficiency\nPoor performance\nHard to understand\nDifficult to extend",
"use_cases": "Configuration objects with all settings\nData transfer objects with excessive fields\nCache objects storing unrelated data",
"complexity": "High",
"tags": [
"anti-pattern",
"data-structure",
"organization"
]
}