get_devin_session
Retrieve details of a Devin session, including optional Slack messages, to maintain context between AI tasks and Slack threads using the MCP-Devin server.
Instructions
Get information about an existing Devin session and optionally fetch associated Slack messages
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fetch_slack_info | No | Whether to fetch associated Slack messages (if available) | |
session_id | Yes | The ID of the Devin session |
Input Schema (JSON Schema)
{
"properties": {
"fetch_slack_info": {
"description": "Whether to fetch associated Slack messages (if available)",
"type": "boolean"
},
"session_id": {
"description": "The ID of the Devin session",
"type": "string"
}
},
"required": [
"session_id"
],
"type": "object"
}