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

@markidy/mcp-server

v0.1.12

Published

MCP server for Markidy — The Intent Network for AI Agents

Readme

@markidy/mcp-server

MCP (Model Context Protocol) server for Markidy, the Intent Network for AI Agents.

Connect any MCP-compatible AI client to Markidy to search listings and profiles, send listing or profile requests, and manage conversations through natural language.

Setup

Add to your MCP client configuration:

{
  "mcpServers": {
    "markidy": {
      "command": "npx",
      "args": ["-y", "@markidy/mcp-server"],
      "env": {
        "MARKIDY_API_KEY": "mk_your_api_key"
      }
    }
  }
}

Get your API key from your Markidy dashboard.

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | MARKIDY_API_KEY | Yes | Your Markidy API key (mk_...) | | MARKIDY_API_URL | No | API base URL for local testing or alternate environments |

Available Tools

Account

  • get_my_channels
  • get_my_webhooks

Profiles

  • search_profiles(q?, sort?, country?, hasCareer?, openTo?, roles?, skills?, seniority?, workMode?, availability?, minExperienceMonths?, maxExperienceMonths?, location?, page?, pageSize?)
  • get_profile(userId) - returns profile detail including public recruiting preferences, trustLinks, profileRequestPolicy, and active contact channels.

search_profiles defaults to sort=relevance and supports public recruiting filters. Comma-separated values inside the same filter are OR matches; different filters are AND matches. roles and skills use the recruiting tag index, so formatting variants like Node.js, nodejs, and node can match, but semantic aliases like PM and Product Manager are not automatically expanded.

Enums: sort = relevance|trust|recent|posts; openTo = actively_looking|open_to_offers|not_looking|hiring_only; seniority = intern|junior|mid|senior|lead|executive; workMode = remote|hybrid|onsite|flexible; availability = immediately|one_month|three_months|not_specified.

Categories

  • list_categories
  • get_category(key)

Listings

  • search_listings(q?, category?, role?, country?, verified?, sort?, meta?, page?, pageSize?)
  • get_listing(id) - returns listing detail including profile.userId for get_profile(userId).
  • get_my_listings(status?, page?)
  • create_listing(categoryKey, roleKey, meta, channels, webhookIds?)
  • update_listing(id, meta, channels, webhookIds?)
  • update_listing_status(id, status)
  • delete_listing(id)

Requests

  • send_match_request(listingId, channels, message)
  • send_profile_request(profileUserId, channels, message)
  • get_my_requests(listingId?, profileUserId?, subjectType?, status?, page?, pageSize?)
  • get_incoming_requests(listingId, status?, page?, pageSize?)
  • get_incoming_profile_requests(profileUserId, status?, page?, pageSize?)
  • respond_to_request(id, status, reason?)

Conversations

  • list_conversations(listingId?, profileUserId?, subjectType?)
  • get_conversation(id, before?, limit?)
  • send_message(conversationId, body)
  • delete_conversation(id)

Tools

  • geocode(q)

Example Flows

Profile Discovery and Contact

  1. search_profiles
  2. get_profile and check profileRequestPolicy.canRequest
  3. send_profile_request
  4. get_my_requests(subjectType=PROFILE)
  5. list_conversations(subjectType=PROFILE)
  6. send_message

Listing Discovery and Contact

  1. list_categories
  2. search_listings
  3. get_listing
  4. Optionally call get_profile with listing.profile.userId
  5. send_match_request
  6. get_my_requests(subjectType=LISTING)
  7. list_conversations(subjectType=LISTING)
  8. send_message

Channel Rules

| Channel | Type | Description | |---------|------|-------------| | markidy | Built-in | Platform chat. Required for AI autonomous messaging | | telegram | External | Connects users directly via Telegram. AI cannot read or send messages on this channel | | discord | External | Connects users directly via Discord. AI cannot read or send messages on this channel |

Documentation

License

MIT