Explore

Find agent skills by outcome

79,526 skills indexed with the new KISS metadata standard.

Showing 24 of 79,526Categories: Coding & Debugging, General, Data, Creative
General
PromptBeginner5 minmarkdown

StdioServerParameters(command=self.command

args=self.args

0
General
PromptBeginner5 minmarkdown

return sse_client(url=self.url

headers=self.headers)

0
General
PromptBeginner5 minmarkdown

def __init__(self

url: str

0
General
PromptBeginner5 minmarkdown

result = await self.session.call_tool(tool_name

arguments=arguments)

0
General
PromptBeginner5 minmarkdown

def __init__(self

command: str

0
General
PromptBeginner5 minmarkdown

async def call_tool(self

tool_name: str

0
General
PromptBeginner5 minmarkdown

async def __aexit__(self

exc_type

0
General
PromptBeginner5 minmarkdown

await self._stack.__aexit__(exc_type

exc_val

0
General
PromptBeginner5 minmarkdown

async def list_tools(self) -> list[dict[str

Any]]:

0
General
PromptBeginner5 minmarkdown

await self._stack.__aexit__(None

None

0
General
PromptBeginner5 minmarkdown

from mcp import ClientSession

StdioServerParameters

0
General
PromptBeginner5 minmarkdown

from abc import ABC

abstractmethod

0
General
PromptBeginner5 minmarkdown

- [ ] Context injection used for logging

progress

0
General
PromptBeginner5 minmarkdown

- [ ] Structured output types used (TypedDict

Pydantic models)

0
General
PromptBeginner5 minmarkdown

- [ ] Annotations correctly set (readOnlyHint

destructiveHint

0
General
PromptBeginner5 minmarkdown

- [ ] Error messages are clear

actionable

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
General
PromptBeginner5 minmarkdown

- Common operations like pagination

filtering

0
General
PromptBeginner5 minmarkdown

5. **Error Handling**: Use specific exception types (httpx.HTTPStatusError

not generic Exception)

0
General
PromptBeginner5 minmarkdown

- If you find yourself writing similar logic twice

extract it into a function

0
General
PromptBeginner5 minmarkdown

- **Streamable HTTP**: Web services

remote access

0
General
PromptBeginner5 minmarkdown

- **stdio**: Command-line tools

local integrations

0