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

@morphixai/mcp-server

v0.8.2

Published

MorphixAI MCP Server — connect AI agents (Claude Code, Cursor, Windsurf) to GitHub, GitLab, Jira, Notion, Gmail, Outlook, Figma, and 40+ workplace tools.

Readme

What is this?

A Model Context Protocol (MCP) server that gives AI agents access to your workplace tools — GitHub, GitLab, Jira, Notion, Gmail, Outlook, Figma, Confluence, Google Tasks, Microsoft To Do, and more.

Works with Claude Code, Cursor, Windsurf, Claude Desktop, and any MCP-compatible client.

Quick Start

1. Get your API Key

Visit morphix.app/api-keys to create an API key (format: mk_xxx).

2. Link your accounts

Visit morphix.app/connections to connect the platforms you want to use (GitHub, Jira, etc.).

3. Install

Claude Code:

claude mcp add morphixai-mcp -- npx -y @morphixai/mcp-server \
  --env MORPHIXAI_API_KEY="mk_your_api_key_here"

Cursor / Windsurf / Claude Desktop:

Add to your MCP settings file (claude_desktop_config.json, ~/.cursor/mcp.json, etc.):

{
  "mcpServers": {
    "morphixai": {
      "command": "npx",
      "args": ["-y", "@morphixai/mcp-server"],
      "env": {
        "MORPHIXAI_API_KEY": "mk_your_api_key_here"
      }
    }
  }
}

Global install (alternative):

npm install -g @morphixai/mcp-server

Available Tools

| Tool | Platform | Actions | |------|----------|---------| | mx_github | GitHub | Repos, issues, PRs, workflow runs, Actions triggers | | mx_gitlab | GitLab | Projects, MRs, issues, pipelines, branches | | mx_jira | Jira | Projects, JQL search, issue CRUD, transitions, comments | | mx_outlook | Outlook Email | List/search/send/reply messages, folders | | mx_outlook_calendar | Outlook Calendar | Calendars, events CRUD, calendar view | | mx_gmail | Gmail | List/search/send messages, labels, mark read, trash | | mx_google_tasks | Google Tasks | Task lists and tasks CRUD | | mx_notion | Notion | Pages, databases, blocks, search | | mx_confluence | Confluence | Spaces, pages, labels, comments, CQL search | | mx_figma | Figma | Projects, files, nodes, images, comments, components, styles, variables | | mx_ms_todo | Microsoft To Do | Task lists and tasks CRUD | | mx_link | All platforms | Account management, OAuth connect, universal API proxy | | mx_flights | Flights (coming soon) | Airport/flight search, booking, orders |

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | MORPHIXAI_API_KEY | Yes | Your MorphixAI API key (mk_xxx format) | | MORPHIXAI_BASE_URL | No | Override API base URL (default: https://api.morphix.app) |

How It Works

AI Agent (Claude, Cursor, etc.)
    ↓ MCP Protocol
@morphixai/mcp-server
    ↓ REST API
MorphixAI Cloud (morphix.app)
    ↓ OAuth Proxy
Third-party APIs (GitHub, Jira, Gmail, etc.)

MorphixAI handles OAuth token management, token refresh, and API proxying. Your AI agent just calls MCP tools — no need to manage API keys or tokens for individual platforms.

Examples

Ask your AI agent:

  • "Show me my open GitLab merge requests"
  • "Create a Jira issue for the login bug"
  • "Search my Gmail for emails from the team lead"
  • "What events do I have this week in Outlook?"
  • "Find all Notion pages about the Q4 roadmap"
  • "List my GitHub Actions workflow runs"

Related

License

MIT