JSPM

@ign8t/mcp

0.1.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 15
  • Score
    100M100P100Q46822F
  • License MIT

MCP server for ign8t project management - AI IDE integration

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/mcp

2. Get Your API Key

  1. Log in to ign8t.com
  2. Navigate to Settings → API Keys
  3. Click "Create New API Key"
  4. Give it a descriptive name (e.g., "Cursor Integration")
  5. Copy the generated key (you won't see it again!)

3. Configure Your AI Tool

Cursor IDE (Recommended - using npx)

Add to ~/.cursor/mcp/settings.json:

{
  "mcpServers": {
    "ign8t": {
      "command": "npx",
      "args": ["-y", "@ign8t/mcp@latest", "--api-key", "your-api-key-here"]
    }
  }
}

Benefits of npx approach:

  • Always uses the latest version
  • No global installation needed
  • Cleaner configuration

Restart Cursor to activate the integration.

Claude Desktop (Recommended - using npx)

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):

{
  "mcpServers": {
    "ign8t": {
      "command": "npx",
      "args": ["-y", "@ign8t/mcp@latest", "--api-key", "your-api-key-here"]
    }
  }
}

For Windows: %APPDATA%\Claude\claude_desktop_config.json

Restart Claude Desktop to activate.

Alternative: Global Installation Method

If you prefer to install globally first:

pnpm install -g @ign8t/mcp

Then configure using command line arguments (recommended) or environment variables:

Using arguments (recommended):

{
  "mcpServers": {
    "ign8t": {
      "command": "ign8t-mcp",
      "args": ["--api-key", "your-api-key-here"]
    }
  }
}

Using environment variables (legacy):

{
  "mcpServers": {
    "ign8t": {
      "command": "ign8t-mcp",
      "env": {
        "IGN8T_API_KEY": "your-api-key-here"
      }
    }
  }
}

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 projects
  • ign8t://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:

  1. Start your day: "What are my current tasks?"
  2. Get context: "Show me the requirements for this task"
  3. Update progress: "Mark this task as in progress"
  4. Search when stuck: "Find similar tasks I've completed"
  5. Complete work: "Mark task as done and get my next task"

Troubleshooting

AI assistant can't find ign8t commands
  1. Verify the MCP server is installed: which ign8t-mcp
  2. Check your AI tool's configuration file has the correct path
  3. Restart your AI tool after configuration changes
  4. Ensure your API key is valid and active
Getting "Invalid API key" errors
  1. Verify your API key in the ign8t dashboard
  2. Check that the key is correctly set in your configuration
  3. Ensure there are no extra spaces or quotes around the key
  4. Generate a new key if the current one isn't working
Can't see my projects
  1. Ensure you're logged into the correct ign8t account
  2. Verify the API key belongs to your account
  3. Check that you have active projects in ign8t
  4. 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:

Using npx (Recommended):

{
  "mcpServers": {
    "ign8t": {
      "command": "npx",
      "args": ["-y", "@ign8t/mcp@latest", "--api-key", "your-api-key"]
    }
  }
}

**Note**: Most users don't need to set a custom 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 contributors working on the MCP server itself:

1. Clone this repository
2. Install dependencies: `pnpm install`
3. Build the project: `pnpm build`
4. Test locally: `pnpm dev --api-key your-key`

## Contributing

We welcome contributions! If you'd like to contribute to the ign8t MCP server:

### Development Setup

```bash
# 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 build

Support

License

MIT © ign8t team


Built with ❤️ by the ign8t team to enhance your AI-powered development workflow.