Lokka is a Model Context Protocol (MCP) server designed to interact with the Microsoft Graph API, enabling users to manage their Microsoft 365 tenant using natural language. It integrates seamlessly with AI models like Claude Desktop, allowing for intuitive and efficient administration of Microsoft 365 resources.
To install Lokka, follow these steps:
bash
npm install -g @merill/lokka
bash
export TENANT_ID=<your-tenant-id>
export CLIENT_ID=<your-client-id>
export CLIENT_SECRET=<your-client-secret>
To use Lokka with Claude Desktop, add the following configuration to your claude_desktop_config.json
:
{
"mcpServers": {
"Lokka-Microsoft-Graph": {
"command": "npx",
"args": ["-y", "@merill/lokka"],
"env": {
"TENANT_ID": "<tenant-id>",
"CLIENT_ID": "<client-id>",
"CLIENT_SECRET": "<client-secret>"
}
}
}
}
Replace <tenant-id>
, <client-id>
, and <client-secret>
with your actual Microsoft Entra application credentials.
path
(string): The Graph API URL path (e.g., '/me', '/users', '/groups').method
(string): HTTP method (e.g., get, post, put, patch, delete).queryParams
(string): Array of query parameters like $filter, $select, etc.body
(JSON): The request body for POST, PUT, PATCH requests.Name | Description |
---|---|
TENANT_ID |
The ID of the Microsoft Entra tenant. |
CLIENT_ID |
The ID of the application registered in Microsoft Entra. |
CLIENT_SECRET |
The client secret of the application registered in Microsoft Entra. |
Lokka allows you to perform various tasks in Microsoft 365 using natural language commands. Here are some examples:
Create a new security group:
plaintext
Create a new security group called 'Sales and HR' with a dynamic rule based on the department attribute.
Find conditional access policies:
plaintext
Find all the conditional access policies that haven't excluded the emergency access account.
View Intune device configuration policies:
plaintext
Show me all the Intune device configuration policies assigned to the 'Call center' group.
For more detailed information, visit the official Lokka documentation.
Lokka is licensed under the MIT License.