Are you the author? Sign in to claim
An MCP server for connecting with Agile Luminary Project Management Application
This is a Model Context Protocol (MCP) server that connects AI clients (like Cursor or Claude Desktop) to the Agile Luminary project management system hosted at https://agileluminary.com.
The Model Context Protocol (MCP) is a standardized way for AI applications to connect to external data sources and services. This server acts as a bridge between your AI client and the Agile Luminary REST API, allowing you to retrieve project details, work assignments, and documentation directly within your AI conversations.
AI Client (Cursor/Claude) → Local MCP Server → Agile Luminary API (localhost:5006)
This MCP server provides three main tools that fetch data from the Agile Luminary API:
searchString (required) - The text to search for in documentssearchString (required) - Search term to find relevant past worknpm install @modelcontextprotocol/sdk zod
Set your API key as an environment variable:
export LUMINARY_API_KEY=your_api_key_here
node server.js
The server will start and listen for connections from your AI client via stdio transport.
Add this to your MCP configuration:
{
"mcpServers": {
"agile-luminary": {
"command": "node",
"args": ["path/to/your/server.js"],
"env": {
"LUMINARY_API_KEY": "your_api_key_here"
}
}
}
}
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"agile-luminary": {
"command": "node",
"args": ["path/to/your/server.js"],
"env": {
"LUMINARY_API_KEY": "your_api_key_here"
}
}
}
}
Once connected, you can use natural language in your AI client:
The server connects to the following Agile Luminary API endpoints:
POST http://localhost:5006/bend/mcp/documents/search - Search documentsGET http://localhost:5006/bend/mcp/userstories/current - Get current workPOST http://localhost:5006/bend/mcp/userstories/search - Search past workThe server uses the LUMINARY_API_KEY environment variable for authentication. This key is passed in the Authorization header for all API requests. Make sure to set this environment variable before running the server.
The server includes comprehensive error handling for:
This MCP server is designed to work specifically with the Agile Luminary project management system. For modifications or enhancements, ensure compatibility with the existing API endpoints.
Note: Make sure your Agile Luminary account is created and you have your API key from https://agileluminary.com before using this MCP server. Set the LUMINARY_API_KEY environment variable with your API key.
Run Claude Code as an MCP server so any agent can delegate coding tasks to it
Browser automation using accessibility snapshots instead of screenshots
Google's universal MCP server supporting PostgreSQL, MySQL, MongoDB, Redis, and 10+ databases
Official GitHub integration for repos, issues, PRs, and CI/CD workflows