MCPcopy Create free account
hub / github.com/SkyworkAI/DeepResearchAgent / get_info

Method get_info

src/agent/server.py:95–104  ·  view source on GitHub ↗

Get agent configuration by name Args: agent_name: Agent name Returns: AgentConfig: Agent configuration or None if not found

(self, agent_name: str)

Source from the content-addressed store, hash-verified

93 return agent_config
94
95 async def get_info(self, agent_name: str) -> Optional[AgentConfig]:
96 """Get agent configuration by name
97
98 Args:
99 agent_name: Agent name
100
101 Returns:
102 AgentConfig: Agent configuration or None if not found
103 """
104 return await self.agent_context_manager.get_info(agent_name)
105
106 async def list(self) -> List[str]:
107 """List all registered agents

Callers 14

_get_messagesMethod · 0.45
_get_messagesMethod · 0.45
_get_messagesMethod · 0.45
_get_messagesMethod · 0.45
_agent_speakMethod · 0.45
initializeMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected