Explore

Find agent skills by outcome

11,132 skills indexed with the new KISS metadata standard.

Showing 24 of 11,132Categories: Cursor-rules, Creative, Coding & Debugging, Productivity
Productivity
PromptBeginner5 minmarkdown

result = await evaluate_single_task(client

model

0
Productivity
PromptBeginner5 minmarkdown

When given a task

you MUST:

0
Coding & Debugging
PromptBeginner5 minmarkdown

Before finalizing your Python MCP server implementation

ensure:

0
Coding & Debugging
PromptBeginner5 minmarkdown

- [ ] Tools enable complete workflows

not just API endpoint wrappers

0
Creative
PromptBeginner5 minmarkdown

4. **Proper Imports**: Group imports (standard library

third-party

0
Coding & Debugging
PromptBeginner5 minmarkdown

return await api_call(resource_id

api_key)

0
Coding & Debugging
PromptBeginner5 minmarkdown

- `ctx.log_info(message

data)` / `ctx.log_error()` / `ctx.log_debug()` - Logging

0
Creative
PromptBeginner5 minmarkdown

await ctx.report_progress(0.25

Starting search...)

0
Productivity
PromptBeginner5 minmarkdown

FastMCP can automatically inject a `Context` parameter into tools for advanced capabilities like logging

progress reporting

0
Coding & Debugging
PromptBeginner5 minmarkdown

async def _make_api_request(endpoint: str

method: str = GET

0
Coding & Debugging
PromptBeginner5 minmarkdown

This server provides tools to interact with Example API

including user search

0
Coding & Debugging
PromptBeginner5 minmarkdown

async def _make_api_request(endpoint: str

method: str = GET

0
Coding & Debugging
PromptBeginner5 minmarkdown

data = await api_request(limit=params.limit

offset=params.offset)

0
Coding & Debugging
PromptBeginner5 minmarkdown

The official MCP Python SDK provides FastMCP

a high-level framework for building MCP servers. It provides:

0
Coding & Debugging
PromptBeginner5 minmarkdown

This document provides Python-specific best practices and examples for implementing MCP servers using the MCP Python SDK. It covers server setup

tool registration patterns

0
Coding & Debugging
PromptBeginner5 minmarkdown

- [ ] Tools enable complete workflows

not just API endpoint wrappers

0
Coding & Debugging
PromptBeginner5 minmarkdown

* This server provides tools to interact with Example API

including user search

0
Coding & Debugging
PromptBeginner5 minmarkdown

const data = await apiRequest(params.limit

params.offset);

0
Creative
PromptBeginner5 minmarkdown

This tool searches across all user profiles in the Example platform

supporting partial matches and various search filters. It does NOT create or modify users

0
Coding & Debugging
PromptBeginner5 minmarkdown

│ └── constants.ts # Shared constants (API_URL

CHARACTER_LIMIT

0
Productivity
PromptBeginner5 minmarkdown

- The `register*` methods provide better type safety

automatic schema handling

0
Coding & Debugging
PromptBeginner5 minmarkdown

- **DO NOT use**: Old deprecated APIs such as `server.tool()`

`server.setRequestHandler(ListToolsRequestSchema

0
Productivity
PromptBeginner5 minmarkdown

2. **Load each task instruction** and in parallel using the MCP server and tools

identify the correct answer by attempting to solve the task YOURSELF

0
Productivity
PromptBeginner5 minmarkdown

Remember to parallelize solving tasks to avoid running out of context

then accumulate all answers and make changes to the file at the end.

0