We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sensiblecoder/solar2d-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
info.py•583 B
"""
solar2d://info resource - Server information.
"""
from mcp.types import Resource
RESOURCE = Resource(
uri="solar2d://info",
name="Solar2D Server Info",
mimeType="text/plain",
description="Information about this Solar2D MCP server"
)
def read() -> str:
"""Read the info resource."""
return """Solar2D MCP Server v0.1.0
This is a Model Context Protocol server for working with Solar2D (Corona SDK) projects.
Capabilities:
- Project analysis
- Code context extraction
- Build configuration help
- API reference
Status: Hello World Implementation
"""