Spaces:
Runtime error
Runtime error
from mcp.server.fastmcp import FastMCP | |
import json | |
# Sample tasks with titles and descriptions | |
tasks = [ | |
{"title": "Plan meeting", "description": "Schedule team sync meeting"}, | |
{"title": "Write report", "description": "Complete quarterly report"}, | |
{"title": "Call client", "description": "Follow up on project requirements"} | |
] | |
# Create a FastMCP server instance | |
mcp = FastMCP(name="TaskServer") | |
# Define a prompt: template for task creation | |
def task_description(task_title="Unnamed task"): | |
return f"Based on the task title '{task_title}', generate a detailed description" | |
# Define a tool: add a new task to the list | |
def add_task(params): | |
task_title = params.get("task_title", "Unnamed task") | |
task_description = params.get("description", "No description provided") | |
new_task = {"title": task_title, "description": task_description} | |
tasks.append(new_task) | |
return {"task": new_task, "success": True} | |
# Define a resource: expose a list of task titles to the client | |
def get_task_titles(): | |
return { | |
"meta": None, | |
"contents": [{ | |
"uri": "tasks://list", | |
"mime_type": "application/json", | |
"text": json.dumps({"tasks": tasks, "count": len(tasks)}) | |
}] | |
} | |
if __name__ == "__main__": | |
mcp.run() |