Skip to main content
Glama

get_components

Retrieve components from Devici for threat modeling with pagination support to manage large datasets.

Instructions

Get components from Devici with pagination

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
pageNo

Implementation Reference

  • MCP tool handler and registration for 'get_components'. This is the primary implementation exposed by the MCP server, which delegates to the API client.
    @mcp.tool() async def get_components(limit: int = 20, page: int = 0) -> str: """Get components from Devici with pagination""" async with create_client_from_env() as client: result = await client.get_components(limit=limit, page=page) return str(result)
  • Supporting API client method that makes the HTTP GET request to '/components/' endpoint to fetch components with pagination.
    async def get_components(self, limit: int = 20, page: int = 0) -> Dict[str, Any]: """Get all components.""" params = {"limit": limit, "page": page} return await self._make_request("GET", "/components/", params=params)

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/geoffwhittington/devici-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server