Explore

Find agent skills by outcome

3,090 skills indexed with the new KISS metadata standard.

Showing 24 of 3,090Categories: Research & Learning, Coding & Debugging, Writing & Content
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
Writing & Content
PromptBeginner5 minmarkdown

textContent = JSON.stringify(output

null

0
Writing & Content
PromptBeginner5 minmarkdown

content: [{ type: text

text: textContent }]

0
Coding & Debugging
PromptBeginner5 minmarkdown

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

CHARACTER_LIMIT

0
Coding & Debugging
PromptBeginner5 minmarkdown

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

`server.setRequestHandler(ListToolsRequestSchema

0
Writing & Content
PromptBeginner5 minmarkdown

content: [{ type: text

text: JSON.stringify(output) }]

0
Coding & Debugging
PromptBeginner5 minmarkdown

<question>Look for pull requests that modified files in the /api directory and were merged between January 1 and January 31

2024. How many different contributors worked on these PRs?</question>

0
Writing & Content
PromptBeginner5 minmarkdown

After inspecting the content

create 10 human-readable questions:

0
Writing & Content
PromptBeginner5 minmarkdown

- Goal: identify specific content (e.g.

users

1
Coding & Debugging
PromptBeginner5 minmarkdown

After understanding the API and tools

USE the MCP server tools:

0
Research & Learning
PromptBeginner5 minmarkdown

- Example: if finding a paper name

be SPECIFIC enough so answer is not confused with papers published later

0
Writing & Content
PromptBeginner5 minmarkdown

- Look at old content (e.g.

conversations that have ended

0
Writing & Content
PromptBeginner5 minmarkdown

return { content: [{ type: text

text: result }] };

0
Coding & Debugging
PromptBeginner5 minmarkdown

- Store API keys in environment variables

never in code

0
Coding & Debugging
PromptBeginner5 minmarkdown

- **Python**: `{service}_mcp` (e.g.

`slack_mcp`)

0
Coding & Debugging
PromptBeginner5 minmarkdown

Prioritize comprehensive API coverage. List endpoints to implement

starting with the most common operations.

0
Coding & Debugging
PromptBeginner5 minmarkdown

- [🐍 Python Guide](./reference/python_mcp_server.md) - Module organization

dependencies

0
Coding & Debugging
PromptBeginner5 minmarkdown

Review the service's API documentation to identify key endpoints

authentication requirements

0
Coding & Debugging
PromptBeginner5 minmarkdown

- **Language**: TypeScript (high-quality SDK support and good compatibility in many execution environments e.g. MCPB. Plus AI models are good at generating TypeScript code

benefiting from its broad usage

0