- Home
- MCP servers
- Luskad
Luskad
- typescript
0
GitHub Stars
typescript
Language
6 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
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.
How to use
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.
How to install
Prerequisites install now to prepare your environment.
- 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"]
}
}
}
Additional configuration notes
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.
Available tools
list-projects
Retrieves all available projects with their details.
get-coding-rules
Search coding rules for a specific project. Requires projectId and can include an optional query to filter results.