Luskad MCP
Provides access to coding rules and examples for your projects.
Luskad MCP
A Model Context Protocol (MCP) server that provides access to coding rules and examples for your projects.
Features
- Project Management: Retrieve all available projects with their details
- Coding Rules: Search and access coding standards within specific projects
- Team Collaboration: Get team member information and project contacts
- Progress Tracking: Monitor project progress, risks, and tasks
- Feature Management: Access project features and their associated issues
- Flexible Configuration: Support for environment variables and command-line arguments
- Multi-Platform: Compatible with Cursor, Windsurf, VS Code, and Claude Desktop
Prerequisites
- Node.js (v16 or higher)
- npm or yarn
- Cursor, Windsurf, Claude Desktop or another MCP Client
You also need to create an account on luskad.com application and generate your API token.
Getting started
Install in Cursor
Go to: Settings -> Cursor Settings -> MCP -> Add new global MCP server
Pasting the following configuration into your Cursor ~/.cursor/mcp.json file is the recommended approach. See Cursor MCP docs for more info.
{
"mcpServers": {
"Luskad": {
"command": "npx",
"args": ["-y", "@acmada/luskad-mcp"]
}
}
}
Install in Windsurf
Add this to your Windsurf MCP config file. See Windsurf MCP docs for more info.
{
"mcpServers": {
"luskad": {
"command": "npx",
"args": ["-y", "@acmada/luskad-mcp"]
}
}
}
Install in VSCode
Add this to your VS Code MCP config file. See VS Code MCP docs for more info.
{
"servers": {
"luskad": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@acmada/luskad-mcp"]
}
}
}
Install in Claude Desktop
Add this to your Claude Desktop claude_desktop_config.json file. See Claude Desktop MCP docs for more info.
{
"mcpServers": {
"luskad": {
"command": "npx",
"args": ["-y", "@acmada/luskad-mcp"]
}
}
}
Available Tools
list-projects
Retrieves all available projects.
get-coding-rules
Search coding rules for a given project. Parameters:
projectId: Project to search for coding rulesquery: (Optional) Search query
Development
- Clone the repository:
git clone https://github.com/frocher/luskad-mcp.git
cd luskad-mcp
- Install dependencies:
npm install
- Build
npm run build
Configuration
Create a .env file in the root directory with the following variables:
API_URL=https://app.luskad.com/api/v1
API_KEY=<your api key>
Or provide the URL via command line:
node dist/index.js --url http://your-api-url --key <your api key>
Local configuration example
{
"mcpServers": {
"luskad": {
"command": "npx",
"args": [
"tsx", "/path/to/folder/luskad-mcp/src/index.ts",
"--url", "http://localhost:3000/api/v1",
"--key", "<your personal key>"
]
}
}
}
Testing with MCP Inspector
npx -y @modelcontextprotocol/inspector npx @acmada/luskad-mcp@latest
License
MIT License - see LICENSE for details.
Related Servers
Scout Monitoring MCP
sponsorPut performance and error data directly in the hands of your AI assistant.
Alpha Vantage MCP Server
sponsorAccess financial market data: realtime & historical stock, ETF, options, forex, crypto, commodities, fundamentals, technical indicators, & more
ServeMyAPI
A personal server for securely storing and accessing API keys using the macOS Keychain.
Optuna MCP Server
Automate optimization and analysis using Optuna.
MCP Demo Server
A reference implementation of a Model Context Protocol (MCP) server with example tools, prompts, and resources.
MCP Emulator Controller
Control emulators by opening/closing apps, capturing screenshots, and interacting with the screen.
Cloudflare MCP Server
An example MCP server designed for easy deployment on Cloudflare Workers, operating without authentication.
GhidraMCP
An embedded MCP server for Ghidra, exposing program data and reverse engineering functionalities.
MCP CLI
A command-line interface for interacting with Model Context Protocol servers.
PydanticRPC
A Python library for building gRPC/ConnectRPC services with Pydantic models, featuring automatic protobuf generation and AI assistant tool exposure.
Svelte MCP
Official Svelte MCP server, provides docs and suggestions on the generated code.
Figma MCP Server
Enables AI assistants to interact with Figma via WebSocket for reading data and design analysis.