MCP Server
The LokalBoards MCP Server allows you to integrate LokalBoards functionality directly into your LLM applications. This enables you to automate workflows, manage boards, areas, cards, and comments programmatically.
Authentication
Most tool calls require authentication. You need to provide an API key in the headers of your requests. You can generate API keys in your user settings.
Integration
To integrate the LokalBoards MCP Server with your LLM, add the following configuration to your LLM settings:
{
"mcpServers": {
"lokalBoards": {
"url": "http://yourdomain.com/mcp",
"headers": {
"x-api-key": "YOUR-API-KEY"
}
}
}
}