- Agile Luminary Mcp
Agile Luminary Mcp
Bring Order to Your Vibes
Product teams lose critical context every time work moves from planning to development. Stories get misinterpreted, features break, and developers rebuild what already exists because the connection between vision and code is broken.
Agile Luminary is the AI-native project management tool that keeps your entire product context connected. Transform simple prompts into comprehensive documentation, user stories, and workflows that stay linked from concept to code.
Never Lose Context Again
Connect all your work directly to your AI IDE (Cursor, Claude, Windsurf). When developers start coding, they have instant access to related stories, requirements, and context. Your AI coding assistant knows what you're building, what already exists, and what not to break.
From Vision to Velocity
Start with your big picture—Vision, PRD, Epics—and let Agile Luminary intelligently break down work into manageable, connected pieces. Each story carries forward the context from your broader goals, ensuring nothing gets lost in translation.
The result? Your team stays focused on high-impact work instead of piecing together fragmented information and fixing preventable mistakes.
This MCP server provides three main tools that fetch data from the Agile Luminary API:
📚 getRelatedDocuments
- Purpose: Retrieve related documents based on a search string
- Parameters:
searchString(required) - The text to search for in documents - Use Case: Find relevant documentation and specifications related to your current work
📋 getCurrentWork
- Purpose: Fetches work currently assigned to the user
- Parameters: None
- Use Case: See what tasks and user stories are actively assigned to you
🔍 getPastWork
- Purpose: Retrieves completed work related to user stories based on search criteria
- Parameters:
searchString(required) - Search term to find relevant past work - Use Case: Review historical context and completed tasks for better decision-making
Server Config
{
"mcpServers": {
"agile-luminary": {
"command": "node",
"args": [
"path/to/your/server.js"
],
"env": {
"LUMINARY_API_KEY": "your_api_key_here"
}
}
}
}