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

@velocity-bpa/n8n-nodes-farcaster

v1.0.0

Published

n8n community node for Farcaster

Readme

n8n-nodes-farcaster

[Velocity BPA Licensing Notice]

This n8n node is licensed under the Business Source License 1.1 (BSL 1.1).

Use of this node by for-profit organizations in production environments requires a commercial license from Velocity BPA.

For licensing information, visit https://velobpa.com/licensing or contact [email protected].

This n8n community node provides comprehensive integration with Farcaster, a decentralized social network built on Ethereum. With 6 core resources implemented, it enables automated workflows for social media management, content distribution, user engagement tracking, and real-time notifications across the Farcaster protocol.

n8n Community Node License TypeScript Farcaster Web3

Features

  • Cast Management - Create, retrieve, update, and delete casts with full metadata support
  • User Operations - Comprehensive user profile management and follower relationship handling
  • Channel Integration - Complete channel administration including member management and content curation
  • Frame Support - Create and manage interactive frames for enhanced user engagement
  • Real-time Notifications - Monitor mentions, reactions, follows, and cast interactions instantly
  • Secure Authentication - API key-based authentication with proper credential management
  • Webhook Integration - Real-time event streaming for immediate workflow triggers
  • Bulk Operations - Efficient batch processing for high-volume social media automation

Installation

Community Nodes (Recommended)

  1. Open n8n
  2. Go to SettingsCommunity Nodes
  3. Click Install a community node
  4. Enter n8n-nodes-farcaster
  5. Click Install

Manual Installation

cd ~/.n8n
npm install n8n-nodes-farcaster

Development Installation

git clone https://github.com/Velocity-BPA/n8n-nodes-farcaster.git
cd n8n-nodes-farcaster
npm install
npm run build
mkdir -p ~/.n8n/custom
ln -s $(pwd) ~/.n8n/custom/n8n-nodes-farcaster
n8n start

Credentials Setup

| Field | Description | Required | |-------|-------------|----------| | API Key | Your Farcaster API key from the developer dashboard | ✓ | | Environment | Choose between 'mainnet' or 'testnet' | ✓ | | App Name | Your application identifier for API requests | ✓ | | Rate Limit | Requests per minute limit (default: 100) | ✗ |

Resources & Operations

1. Casts

| Operation | Description | |-----------|-------------| | Create | Publish a new cast to Farcaster | | Get | Retrieve a specific cast by hash or URL | | Update | Edit an existing cast's content or metadata | | Delete | Remove a cast from your profile | | List | Get casts from timeline, user, or channel | | React | Add or remove reactions (like, recast, etc.) | | Reply | Create a reply to an existing cast |

2. Users

| Operation | Description | |-----------|-------------| | Get Profile | Retrieve detailed user profile information | | Update Profile | Modify profile details, bio, or display name | | Follow | Follow another user | | Unfollow | Unfollow a user | | Get Followers | List users following a specific account | | Get Following | List users that an account follows | | Search | Search for users by username or display name | | Block | Block a user account | | Unblock | Remove user from blocked list |

3. Channels

| Operation | Description | |-----------|-------------| | Create | Create a new channel | | Get | Retrieve channel information and metadata | | Update | Modify channel settings and description | | Delete | Remove a channel (admin only) | | Join | Join an existing channel | | Leave | Leave a channel | | List Members | Get all channel members | | Moderate | Perform moderation actions (ban, mute, etc.) | | Get Feed | Retrieve channel's cast feed |

4. Frames

| Operation | Description | |-----------|-------------| | Create | Build and deploy interactive frames | | Get | Retrieve frame configuration and metadata | | Update | Modify frame content or interaction logic | | Delete | Remove a frame from circulation | | List | Get all frames associated with your account | | Analytics | Retrieve frame interaction statistics | | Test | Validate frame functionality before deployment |

5. Authentication

| Operation | Description | |-----------|-------------| | Verify Token | Validate API key and permissions | | Refresh | Regenerate authentication credentials | | Get Limits | Check current rate limits and usage | | Revoke | Invalidate authentication tokens |

6. Notifications

| Operation | Description | |-----------|-------------| | List | Retrieve recent notifications | | Mark Read | Mark notifications as read | | Subscribe | Set up webhook subscriptions for events | | Unsubscribe | Remove webhook subscriptions | | Get Settings | Retrieve notification preferences | | Update Settings | Modify notification preferences |

Usage Examples

// Create a new cast with mentions and links
{
  "resource": "casts",
  "operation": "create",
  "text": "Building the future of decentralized social! 🚀 @dwr @v",
  "embeds": ["https://farcaster.xyz"],
  "channel": "builders"
}
// Follow multiple users and get their recent casts
{
  "resource": "users",
  "operation": "follow",
  "username": "dwr.eth"
}
// Set up real-time notifications for mentions
{
  "resource": "notifications",
  "operation": "subscribe",
  "events": ["mention", "reply", "reaction"],
  "webhook_url": "https://your-n8n-instance.com/webhook/farcaster"
}
// Create an interactive frame for user engagement
{
  "resource": "frames",
  "operation": "create",
  "title": "Vote on Our Proposal",
  "image": "https://example.com/voting-frame.png",
  "buttons": [
    {"text": "Yes", "action": "post", "target": "/vote/yes"},
    {"text": "No", "action": "post", "target": "/vote/no"}
  ]
}

Error Handling

| Error | Description | Solution | |-------|-------------|----------| | 401 Unauthorized | Invalid or expired API key | Verify API key in credentials settings | | 429 Rate Limited | Too many requests in time window | Implement delays or reduce request frequency | | 403 Forbidden | Insufficient permissions for operation | Check API key permissions in Farcaster dashboard | | 404 Not Found | Cast, user, or channel doesn't exist | Verify the resource identifier is correct | | 422 Validation Error | Invalid data format or missing fields | Check required fields and data types | | 500 Server Error | Farcaster API temporary issue | Implement retry logic with exponential backoff |

Development

npm install
npm run build
npm test
npm run lint
npm run dev

Author

Velocity BPA

Licensing

This n8n community node is licensed under the Business Source License 1.1.

Free Use

Permitted for personal, educational, research, and internal business use.

Commercial Use

Use of this node within any SaaS, PaaS, hosted platform, managed service, or paid automation offering requires a commercial license.

For licensing inquiries: [email protected]

See LICENSE, COMMERCIAL_LICENSE.md, and LICENSING_FAQ.md for details.

Contributing

Contributions are welcome! Please ensure:

  1. Code follows existing style conventions
  2. All tests pass (npm test)
  3. Linting passes (npm run lint)
  4. Documentation is updated for new features
  5. Commit messages are descriptive

Support