get_organization_info
Retrieve details about the current Devin organization. Integrates with MCP-Devin to support Slack workflows, task management, and thread context synchronization.
Instructions
Get information about the current Devin organization
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:600-610 (handler)Handler for the get_organization_info tool. Returns JSON with organization name and base URL from configuration.case "get_organization_info": { return { content: [{ type: "text", text: JSON.stringify({ name: ORG_NAME, base_url: BASE_URL, }, null, 2) }] }; }
- src/index.ts:215-222 (registration)Tool registration in listTools response, including name, description, and empty input schema.{ name: "get_organization_info", description: "Get information about the current Devin organization", inputSchema: { type: "object", properties: {} } }
- src/index.ts:218-221 (schema)Input schema definition for the tool (no required parameters).inputSchema: { type: "object", properties: {} }