Skip to main content
Glama
tools.py898 B
from mcp.types import Tool, TextContent from typing import List def get_tools() -> List[Tool]: return [ Tool(name="send_agent_data", description="Send data to an agent", inputSchema={ "type": "object", "properties": {"prompt": {"type": "string"}}, "required": ["prompt"] }), Tool(name="receive_agent_data", description="Receive data from an agent", inputSchema={ "type": "object", "properties": { "query": {"type": "string"}, "tracking_key": {"type": "string"}, "response_type": {"type": "string", "default": "markdown"} }, "required": ["query"] }), Tool(name="get_available_agents", description="Get the list of available agents", inputSchema={ "type": "object", "properties": {} }) ]

Latest Blog Posts

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/seyhunak/agentcraft-mcp'

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