npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@ign8t/mcp

v0.1.2

Published

MCP server for ign8t project management - AI IDE integration

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

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.

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.

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

  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
  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
  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.