get_team
Retrieve detailed information about a specific team by providing its unique ID using the Devici MCP Server, enabling efficient management of team-related resources in threat modeling.
Instructions
Get a specific team by ID
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| team_id | Yes |
Implementation Reference
- src/devici_mcp_server/server.py:204-209 (handler)MCP tool handler for 'get_team' that retrieves a specific team by ID using the Devici API client and returns the result as a string.@mcp.tool() async def get_team(team_id: str) -> str: """Get a specific team by ID""" async with create_client_from_env() as client: result = await client.get_team(team_id) return str(result)
- API client helper method that performs the authenticated HTTP GET request to fetch the specific team by ID from the Devici API.async def get_team(self, team_id: str) -> Dict[str, Any]: """Get specific team by ID.""" return await self._make_request("GET", f"/teams/{team_id}")