skills/mcp_skill/SKILL.md
Use this skill when working with the mcp-skill CLI to create generated MCP app wrappers, list available generated apps, list functions for a specific app, inspect a generated function signature and docstring, or understand how to call generated apps from async Python.
npx skillsauth add manojbajaj95/mcp-skill mcp-skillInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Use this skill when you need to work with the mcp-skill CLI or use a generated MCP-backed app from Python.
This skill helps with:
CLI usage depends on:
uvmcp-skillPython usage depends on:
mcp-skill# Create a new generated app wrapper
uvx mcp-skill create --url https://example.com/mcp --name example --non-interactive
# List generated apps
uvx mcp-skill list-apps
# List functions for one app
uvx mcp-skill list-functions notion
# Inspect one function
uvx mcp-skill inspect notion notion_search
Find a generated app, inspect the function you need, then call it from async Python:
import asyncio
from sentry.app import SentryApp
async def main():
sentry = SentryApp()
user = await sentry.whoami()
print(user)
asyncio.run(main())
async and should be called with await.async def, then run that function with asyncio.run(...) in a normal script.await, you will get a coroutine object instead of the real result.uvx mcp-skill list-apps to find the generated app name.uvx mcp-skill list-functions <app> to see available functions.uvx mcp-skill inspect <app> <function> to confirm the exact signature and docstring.<app>.app and call the async method you found.tools
Use this skill when you need to work with sentry through its generated async Python app, call its MCP-backed functions from code, or inspect available functions with the mcp-skill CLI.
tools
Use this skill when you need to work with pubmed through its generated async Python app, call its MCP-backed functions from code, or inspect available functions with the mcp-skill CLI.
tools
Use this skill when you need to work with search-mcp through its generated async Python app, call its MCP-backed functions from code, or inspect available functions with the mcp-skill CLI.
tools
Use this skill when you need to work with notion through its generated async Python app, call its MCP-backed functions from code, or inspect available functions with the mcp-skill CLI.