Skip to main content
Glama

SingleStore MCP Server

resources.py2.02 kB
from pathlib import Path from src.api.resources.types import Resource def get_singlestore_drizzle_guide() -> dict: """ SingleStore and Drizzle ORM Integration Guide Provides comprehensive documentation for integrating SingleStore database with Drizzle ORM. This guide covers integration patterns, best practices, performance optimizations, and practical examples for building applications with SingleStore's high-performance capabilities using Drizzle ORM. The content includes setup instructions, configuration examples, and implementation guidance for effective SingleStore + Drizzle integration. """ current_dir = Path(__file__).parent docs_path = current_dir / "docs" / "singlestore-drizzle.mdc" try: with open(docs_path, "r", encoding="utf-8") as f: content = f.read() return { "status": "success", "message": "SingleStore Drizzle integration guide retrieved successfully", "content": content, "uri": "docs://singlestore/drizzle-integration", "metadata": { "content_length": len(content), "filePath": str(docs_path), }, } except FileNotFoundError: return { "status": "error", "message": "SingleStore Drizzle integration guide not found", "content": "SingleStore Drizzle integration guide not found.", "uri": "docs://singlestore/drizzle-integration", "errorCode": "FileNotFound", "errorDetails": {"filePath": str(docs_path)}, } resources_definitions = [ { "title": "SingleStore + Drizzle ORM Integration Guide", "func": get_singlestore_drizzle_guide, "uri": "docs://singlestore/drizzle-integration", } ] # Export the resources using create_from_dict for consistency resources = [Resource.create_from_dict(resource) for resource in resources_definitions]

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/singlestore-labs/mcp-server-singlestore'

If you have feedback or need assistance with the MCP directory API, please join our Discord server