testmo_get_project
Retrieve details of a specific Testmo project by providing its project ID.
Instructions
Get details of a specific Testmo project by ID.
Args: project_id: The project ID.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- testmo/tools/projects.py:14-22 (handler)The testmo_get_project tool handler. It's an async function decorated with @mcp.tool() that takes a project_id integer and makes a GET request to /projects/{project_id} via _request.
@mcp.tool() async def testmo_get_project(project_id: int) -> dict[str, Any]: """Get details of a specific Testmo project by ID. Args: project_id: The project ID. """ result = await _request("GET", f"/projects/{project_id}") return result.get("result", result)