Skip to main content
Glama

get_dev_agent

Retrieve development agent information to access configuration details and available tools for AI assistant operations.

Instructions

Get information about the Development Agent

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler function for the 'get_dev_agent' tool, registered using the @mcp.tool decorator. It simply returns the predefined profile dictionary for the Development Agent from AGENT_PROFILES.
    @mcp.tool("get_dev_agent", description="Get information about the Development Agent") def get_dev_agent() -> Dict: """Returns the Development Agent's profile, capabilities, and limitations.""" return AGENT_PROFILES["dev_agent"]
  • The data structure (within AGENT_PROFILES) that defines the Development Agent's profile, capabilities, limitations, and prompt, which is returned by the tool handler.
    "dev_agent": { "name": "Development Agent", "description": "A specialized AI agent for software development tasks", "capabilities": [ "Write and review code in multiple programming languages", "Debug and troubleshoot technical issues", "Implement features and fix bugs", "Provide architecture and design recommendations", "Optimize performance and code quality", "Create and maintain technical documentation", ], "limitations": [ "Cannot directly access production systems", "Cannot make deployment decisions without approval", "Should not modify database schemas without review", "Must follow established coding standards and practices", ], "prompt": "You are a senior software developer with expertise in multiple programming languages and frameworks. Focus on writing clean, maintainable, and efficient code. Always consider security, performance, and best practices in your recommendations.", },

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/amajakai14/mcp-agents'

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