home / mcp / luskad mcp server
Provides access to projects, coding rules, team data, and progress via MCP for your development projects.
Configuration
View docs{
"mcpServers": {
"frocher-luskad-mcp": {
"command": "npx",
"args": [
"-y",
"@acmada/luskad-mcp"
],
"env": {
"API_KEY": "<your api key>",
"API_URL": "https://app.luskad.com/api/v1"
}
}
}
}Luskad MCP Server provides access to coding rules, projects, team details, and progress data through a lightweight MCP interface. You can integrate it with your MCP clients to query projects, search coding standards, view team contacts, monitor progress, and manage features across your initiatives.
You connect your MCP client to the Luskad MCP server and start exploring projects, coding rules, and project data. Use the client’s navigation to list projects, search for coding rules within a chosen project, and view associated issues and team contacts. The server is designed to work with standard MCP clients, so you can perform common actions like listing projects and retrieving coding rules without writing custom requests.
Prerequisites install now to prepare your environment.
1) Install Node.js (version 16 or higher). 2) Install npm or yarn.
Choose the MCP client you will use (Cursor, Windsurf, VS Code, Claude Desktop, or another MCP client). If you need an account on luskad.com and an API token, complete those steps to enable access.
Next, configure your MCP client to point to the Luskad MCP server by adding a server configuration block as shown below.
{
"mcpServers": {
"luskad": {
"command": "npx",
"args": ["-y", "@acmada/luskad-mcp"]
}
}
}If you plan to run the server locally and supply an API URL and token, you can use a local runtime command that passes those values to the MCP server. For development, you may set the API URL and key as environment variables or pass them on the command line when launching the local instance.
Example of a local start approach using environment settings or a direct runtime command is shown in the development guidance.
Retrieves all available projects with their details.
Search coding rules for a specific project. Requires projectId and can include an optional query to filter results.