Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| PYTHONPATH | No | The Python path to the src directory of the project |
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| create_agent | Create a new Claude Code agent within a managed session. Creates a new agent instance with the specified configuration and assigns it to the given session for collaborative development work. |
| create_session | Create a new development session for a project. Initializes a new session with the specified root path and prepares the environment for agent collaboration. |
| send_message_to_agent | Send a message to a specific agent. Delivers a message to the specified agent for processing. The agent will receive the message and can respond accordingly. |
| get_session_status | Get the current status of a session and its agents. Returns comprehensive status information about the session including all active agents and their current state. |
| delete_agent | Delete an agent from the system. Safely terminates and removes an agent from its session. Use force=True to forcefully terminate unresponsive agents. |
| delete_session | Delete a session and all its agents. Safely terminates all agents in the session and cleans up resources. Use force=True to forcefully terminate unresponsive sessions. |
| list_sessions | List all active sessions and their basic information. Returns a summary of all currently active sessions in the system. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |