We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Syndicats/mcp-initializer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
python-instructions.md•611 B
**Python Implementation**:
- Create `src/main.py` as the main server entry point
- Follow the coding standards in `.windsurf/rules/python.md`
- Use type hints and proper error handling
- Create comprehensive tests in `tests/` directory
**Key Python Patterns**:
```python
from mcp.server import Server
from mcp.server.stdio import stdio_server
from mcp.types import Tool
server = Server("{{projectName}}")
@server.list_tools()
async def list_tools() -> list[Tool]:
return [/* your tools */]
@server.call_tool()
async def call_tool(name: str, arguments: dict) -> dict:
# Handle tool calls
pass
```