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

@taskmagic/apps-meetgeek

v0.1.2

Published

AI meeting assistant [MeetGeek](https://meetgeek.ai) — API docs: https://docs.meetgeek.ai/api/getting-started/introduction

Readme

MeetGeek

AI meeting assistant MeetGeek — API docs: https://docs.meetgeek.ai/api/getting-started/introduction

  • Actions: List Meetings, Get Meeting, Get Meeting Transcript, Get Meeting Summary, Get Meeting Highlights, Get Meeting Insights, Get Recording Download Link, Send Bot to Meeting, Upload Recording, List Teams, List Team Meetings.
  • Triggers: New Meeting (polling).

Connection: an API key from app.meetgeek.aiIntegrationsPublic API card, plus the region the key was issued in. Sent as Authorization: Bearer <key>.

Regions matter. MeetGeek runs three hosts — api.meetgeek.ai (default/Europe), api-eu.meetgeek.ai and api-us.meetgeek.ai — and a key is only valid against the region that issued it. The connection form asks for the region and the piece resolves the host; a mismatch surfaces as a clear auth error rather than a bare 401.

Notes

  • Rate limits are tight on lower plans: Free and Pro allow 100 API requests per day (Business/Enterprise: 100 per minute). The New Meeting trigger deliberately fetches only the first page of results — following pagination cursors would multiply requests against that daily budget. A 429 is surfaced with an explanatory message.
  • No webhook triggers. MeetGeek has no webhook-management API — its single webhook URL is pasted by hand in Integrations → Public API, and it carries one event. New Meeting therefore polls the meeting list, tracking the set of meeting ids it has already seen. It deliberately does not use a timestamp cursor: the only time available is when a meeting ended, not when MeetGeek finished processing it, so a long meeting that transcribes slowly would be filtered out for good once a shorter, later-ending meeting had been emitted.
  • The trigger emits the compact list shape (meeting_id plus start/end timestamps). Chain Get Meeting, Get Meeting Summary or Get Meeting Transcript after it for content.
  • No custom API call action. The actions above cover the endpoints worth automating. Delete Meeting is deliberately not exposed — it destroys a recording and its transcript, and no request asked for it; add it if a user does.
  • Page sizes are validated locally. MeetGeek documents limit as 1–500; a 0, a fraction or an over-large value is rejected before the request is spent, which matters on a 100-per-day budget.