Package Exports
- @ign8t/mcp
- @ign8t/mcp/dist/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@ign8t/mcp) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
ign8t MCP Server
Seamlessly integrate ign8t project management into your AI-powered development workflow. Access your projects, documents, and tasks directly from Cursor, Claude Desktop, and other MCP-compatible AI tools.
What is MCP?
Model Context Protocol (MCP) is an open standard that enables AI assistants to securely access external tools and data sources. With the ign8t MCP server, your AI assistant can:
- 📋 Access all your ign8t projects without switching contexts
- 📄 Read BRD, PRD, and TRD documents to understand requirements
- 📊 View and manage your backlog in real-time
- ✅ Update task statuses as you complete work
- 🔍 Search across all tasks and projects
- 🎯 Get AI-powered task recommendations
- 🧠 Access full context including related requirements and documentation
Quick Start
1. Install the MCP Server
pnpm install -g @ign8t/mcp2. Get Your API Key
- Log in to ign8t.com
- Navigate to Settings → API Keys
- Click "Create New API Key"
- Give it a descriptive name (e.g., "Cursor Integration")
- Copy the generated key (you won't see it again!)
3. Configure Your AI Tool
Cursor IDE
Add to ~/.cursor/mcp/settings.json:
{
"mcpServers": {
"ign8t": {
"command": "ign8t-mcp",
"env": {
"IGN8T_API_KEY": "your-api-key-here" // This is all you need!
}
}
}
}Restart Cursor to activate the integration.
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):
{
"mcpServers": {
"ign8t": {
"command": "ign8t-mcp",
"env": {
"IGN8T_API_KEY": "your-api-key-here" // This is all you need!
}
}
}
}For Windows: %APPDATA%\Claude\claude_desktop_config.json
Restart Claude Desktop to activate.
4. Verify Installation
Ask your AI assistant:
"Can you list my ign8t projects?"If configured correctly, it will show your active projects!
Usage Examples
Once configured, you can interact with ign8t naturally through your AI assistant:
Project Management
"Show me all my active projects"
"Get details about the [project name] project"
"Show me the BRD for [project name]"
"Display all documents for my current project"Task Workflow
"What should I work on next?"
"Show me the backlog for [project name]"
"Search for tasks related to authentication"
"Update task [id] to in_progress"
"Mark task [id] as done with note: 'Implemented OAuth2'"
"Get full context for task [id]"Resources
The MCP server also provides quick access to resources:
ign8t://projects- List of all your projectsign8t://current-tasks- Your active tasks across all projects
Available Tools Reference
| Tool | Description | Example Use |
|---|---|---|
list_projects |
List all projects with optional status filter | "Show my archived projects" |
get_project |
Get detailed project information | "Get details for project abc123" |
get_documents |
Retrieve BRD, PRD, TRD documents | "Show me the PRD for project xyz" |
get_backlog |
View epics, stories, and tasks | "Display backlog including completed items" |
get_next_task |
AI-recommended next task | "What should I work on next?" |
update_task_status |
Change task status with notes | "Set task 123 to blocked: waiting on API" |
search_tasks |
Search across tasks | "Find all tasks mentioning 'payment'" |
get_task_context |
Full task context with requirements | "Show context for task 456" |
Workflow Integration
The ign8t MCP server is designed to fit seamlessly into your development workflow:
- Start your day: "What are my current tasks?"
- Get context: "Show me the requirements for this task"
- Update progress: "Mark this task as in progress"
- Search when stuck: "Find similar tasks I've completed"
- Complete work: "Mark task as done and get my next task"
Troubleshooting
AI assistant can't find ign8t commands
- Verify the MCP server is installed:
which ign8t-mcp - Check your AI tool's configuration file has the correct path
- Restart your AI tool after configuration changes
- Ensure your API key is valid and active
Getting "Invalid API key" errors
- Verify your API key in the ign8t dashboard
- Check that the key is correctly set in your configuration
- Ensure there are no extra spaces or quotes around the key
- Generate a new key if the current one isn't working
Can't see my projects
- Ensure you're logged into the correct ign8t account
- Verify the API key belongs to your account
- Check that you have active projects in ign8t
- Try the command "list all my projects including archived"
Advanced Configuration
Custom API Endpoint (Optional)
The MCP server connects to https://ign8t.com by default. For enterprise deployments, self-hosted instances, or local development, you can override the API endpoint:
{
"mcpServers": {
"ign8t": {
"command": "ign8t-mcp",
"env": {
"IGN8T_API_KEY": "your-api-key",
"IGN8T_API_URL": "https://your-domain.com" // Optional - only for custom deployments
}
}
}
}Note: Most users don't need to set IGN8T_API_URL. It's only required if you're:
- Using an enterprise or self-hosted ign8t instance
- Developing locally (e.g.,
http://localhost:3000) - Using a custom domain
Development Mode
For local development and testing:
- Clone this repository
- Install dependencies:
pnpm install - Copy
.env.exampleto.envand add your API key (for development only!) - Run in dev mode:
pnpm dev - Configure your AI tool to use the local path
Note: The .env file is ONLY for developers working on the MCP server itself. End users should configure their API key in their IDE's MCP settings, not in .env files.
Contributing
We welcome contributions! Please see our Contributing Guide for details.
Development Setup
# Clone the repository
git clone https://github.com/ign8t/mcp-server.git
cd mcp-server
# Install dependencies
pnpm install
# Run tests
pnpm test
# Build
pnpm buildSupport
- 📚 Documentation: docs.ign8t.com/mcp
- 🐛 Issues: GitHub Issues
- 💬 Community: Discord
- 📧 Email: support@ign8t.com
License
MIT © ign8t team
Built with ❤️ by the ign8t team to enhance your AI-powered development workflow.