MCPcopy Index your code
hub / github.com/commandoperator/cmdop-sdk / my

Method my

python/src/cmdop/resources/skills.py:69–83  ·  view source on GitHub ↗

Your own skills (incl. private / draft).

(
        self,
        *,
        search: str | None = None,
        ordering: str | None = None,
        page: int | None = None,
        page_size: int | None = None,
    )

Source from the content-addressed store, hash-verified

67 return (await self._unary(req)).skill_detail
68
69 async def my(
70 self,
71 *,
72 search: str | None = None,
73 ordering: str | None = None,
74 page: int | None = None,
75 page_size: int | None = None,
76 ) -> SkillListPage:
77 """Your own skills (incl. private / draft)."""
78 req = pb.Envelope(
79 skills_my_req=s_pb.SkillsMyRequest(
80 search=search, ordering=ordering, page=page, page_size=page_size
81 )
82 )
83 return (await self._unary(req)).skill_list_page
84
85 # -- install / star ----------------------------------------------------
86

Callers

nothing calls this directly

Calls 1

_unaryMethod · 0.80

Tested by

no test coverage detected