Explore

Find agent skills by outcome

17,194 skills indexed with the new KISS metadata standard.

Showing 24 of 17,194Categories: Coding & Debugging, Openclaw, Creative
Coding & Debugging
PromptBeginner5 minmarkdownQuality: 26

This server provides tools to interact with Example API

including user search

0
Coding & Debugging
PromptBeginner5 minmarkdownQuality: 22

async def makeapi_request(endpoint: str

method: str = GET

0
Coding & Debugging
PromptBeginner5 minmarkdownQuality: 22

data = await api_request(limit=params.limit

offset=params.offset)

0
Coding & Debugging
PromptBeginner5 minmarkdownQuality: 26

The official MCP Python SDK provides FastMCP

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

0
Coding & Debugging
PromptBeginner5 minmarkdownQuality: 30

This document provides Python-specific best practices and examples for implementing MCP servers usin...

tool registration patterns

0
Coding & Debugging
PromptBeginner5 minmarkdownQuality: 22

- [ ] Tools enable complete workflows

not just API endpoint wrappers

0
Coding & Debugging
PromptBeginner5 minmarkdownQuality: 26

* This server provides tools to interact with Example API

including user search

0
Coding & Debugging
PromptBeginner5 minmarkdownQuality: 22

const data = await apiRequest(params.limit

params.offset);

0
Creative
PromptBeginner5 minmarkdownQuality: 30

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

1
Coding & Debugging
PromptBeginner5 minmarkdownQuality: 22

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

CHARACTER_LIMIT

0
Coding & Debugging
PromptBeginner5 minmarkdownQuality: 26

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

`server.setRequestHandler(ListToolsRequestSchema

0
Coding & Debugging
PromptBeginner5 minmarkdownQuality: 31

Look for pull requests that modified files in the /api directory and were merged between January 1 a...

2024. How many different contributors worked on these PRs?

0
Coding & Debugging
PromptBeginner5 minmarkdownQuality: 22

After understanding the API and tools

USE the MCP server tools:

0
Creative
PromptBeginner5 minmarkdownQuality: 22

- Questions must be designed so there is a single

clear answer

0
Coding & Debugging
PromptBeginner5 minmarkdownQuality: 22

- Store API keys in environment variables

never in code

0
Creative
PromptBeginner5 minmarkdownQuality: 22

3. Be action-oriented: Start with verbs (get

list

0
Coding & Debugging
PromptBeginner5 minmarkdownQuality: 22

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

slack_mcp)

0
Creative
PromptBeginner5 minmarkdownQuality: 26

- MCP Protocol: Start with sitemap at https://modelcontextprotocol.io/sitemap.xml

then fetch specific pages with .md suffix

0
Coding & Debugging
PromptBeginner5 minmarkdownQuality: 26

Prioritize comprehensive API coverage. List endpoints to implement

starting with the most common operations.

0
Coding & Debugging
PromptBeginner5 minmarkdownQuality: 22

- 🐍 Python Guide - Module organization

dependencies

0
Coding & Debugging
PromptBeginner5 minmarkdownQuality: 22

Review the service's API documentation to identify key endpoints

authentication requirements

0
Coding & Debugging
PromptBeginner5 minmarkdownQuality: 26

- Language: TypeScript (high-quality SDK support and good compatibility in many execution environmen...

benefiting from its broad usage

0
Coding & Debugging
PromptBeginner5 minmarkdownQuality: 26

Agents benefit from concise tool descriptions and the ability to filter/paginate results. Design too...

relevant data. Some clients support code execution which can help agents filter and process data efficiently.

0
Coding & Debugging
PromptBeginner5 minmarkdownQuality: 26

Balance comprehensive API endpoint coverage with specialized workflow tools. Workflow tools can be m...

while comprehensive coverage gives agents flexibility to compose operations. Performance varies by client—some clients benefit from code execution that combines basic tools

0