MCPcopy Index your code
hub / github.com/MetapriseAI/OrgKernel / verify_identity

Function verify_identity

src/orgkernel/pyapi/router.py:270–276  ·  view source on GitHub ↗

Static verification of an AgentIdentity (status + expiry).

(
    data: AgentIdentityVerify,
    db: Annotated[AsyncSession, Depends(get_db)],
)

Source from the content-addressed store, hash-verified

268 description="Perform static verification: status + expiry. For cryptographic verification use /challenge endpoints.",
269)
270async def verify_identity(
271 data: AgentIdentityVerify,
272 db: Annotated[AsyncSession, Depends(get_db)],
273) -> AgentIdentityVerifyResponse:
274 """Static verification of an AgentIdentity (status + expiry)."""
275 svc = AgentIdentityService(db)
276 return await svc.verify(data)
277
278
279@_identity.post(

Callers

nothing calls this directly

Calls 2

verifyMethod · 0.95

Tested by

no test coverage detected