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

@jplansink/n8n-nodes-peec-ai

v0.2.0

Published

n8n community node for Peec AI — full MCP coverage (27 tools / 31 typed operations)

Readme

n8n-nodes-peec-ai

n8n community node for Peec AI. Full Peec MCP coverage — 27 tools surfaced as 31 typed n8n operations across 12 resources, including read, write, and delete.

Not affiliated with Peec AI. Repo: github.com/jplansink/n8n-nodes-peec-ai.

Installation

In n8n: Settings → Community Nodes → Install → @jplansink/n8n-nodes-peec-ai.

Credentials

OAuth2 + PKCE. Register an OAuth client with Peec once, then paste the Client ID and Secret into the n8n credential.

curl -X POST https://api.peec.ai/mcp/register \
  -H "Content-Type: application/json" \
  -d '{
    "client_name": "my-n8n",
    "redirect_uris": ["https://YOUR-N8N-HOST/rest/oauth2-credential/callback"],
    "grant_types": ["authorization_code", "refresh_token"],
    "response_types": ["code"],
    "token_endpoint_auth_method": "client_secret_post"
  }'

The client secret expires every 30 days; re-register when it does.

In n8n: Settings → Credentials → New → "Peec AI OAuth2 API" → paste Client ID + Secret → Connect my account.

Operations

| Resource | Operations | MCP tools | | ----------------- | ------------------------------------------------------------------- | --------------------------------------------------------------------------------- | | Project | Get Many | list_projects | | Brand | Get Many · Get Report · Create · Update · Delete | list_brands · get_brand_report · create_brand · update_brand · delete_brand | | Prompt | Get Many · Create · Update · Delete | list_prompts · create_prompt · update_prompt · delete_prompt | | Topic | Get Many · Create · Update · Delete | list_topics · create_topic · update_topic · delete_topic | | Tag | Get Many · Create · Update · Delete | list_tags · create_tag · update_tag · delete_tag | | Chat | Get Many · Get | list_chats · get_chat | | Domain | Get Report | get_domain_report | | URL | Get Report · Get Content | get_url_report · get_url_content | | Search Query | Get Many | list_search_queries | | Shopping Query| Get Many | list_shopping_queries | | Model | Get Many | list_models | | Action | Overview · Owned · Editorial · Reference · UGC | get_actions (split by scope) |

31 operations / 27 underlying MCP tools.

Columnar MCP responses are flattened to one n8n item per row, so loops/filters/maps work naturally downstream. Project, Brand, Topic, Tag, and Prompt fields use dynamic pickers (populate from the selected project). Deletes are guarded by a Confirm Deletion boolean since Peec soft-delete is non-idempotent. The node is usableAsTool — AI Agent nodes can invoke any operation directly.

Compatibility

  • n8n 1.x, 2.x
  • Node.js 22.16+

Resources