New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

plugin-connections

Package Overview
Dependencies
Maintainers
0
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

plugin-connections

Connection management plugin for Twitter authentication and other services

latest
Source
npmnpm
Version
1.1.0
Version published
Maintainers
0
Created
Source

ElizaOS Connections Plugin

This plugin provides OAuth-based connection management for various channels within the ElizaOS ecosystem. It allows agents to authenticate with external services on the fly.

Features

  • OAuth Authentication: Securely connect to external services using OAuth.
  • Dynamic Credential Management: Allows multiple agents to use the same API subscription (e.g., for Twitter).
  • Currently Supported Services:
    • Twitter/X

IMPORTANT

Do not add plugin-twitter manually to the agent/character/project file. Only add plugin-connections. It will add the plugin-twitter dynamically whenever the OAuth callback is successful.

Twitter Developer Account Setup

To use this plugin, you need a Twitter Developer Account. You will also need to configure your Twitter App to use OAuth 1.0a and add a callback URL.

  • Navigate to the Twitter Developer Portal: Go to the Twitter Developer Portal and log in with your developer account.

  • Select Your Project and App: In the dashboard, find and select the project and the specific application you want to configure.

  • Go to App Settings: Find the settings for your app. This might be labeled as "App Settings" or a settings icon (a cog).

  • Find Authentication Settings: Within your app's settings, locate the "Authentication settings" section and click "Edit".

  • Enable 3-legged OAuth: You will need to enable "3-legged OAuth".

  • Add the Callback URL: In the "Callback URLs" or "Callback URI / Redirect URL" field, enter the following URL:

    http://localhost:3000/api/connections/twitter/callback
    

    Replace http://localhost:3000 with your agent's public URL if it's deployed.

  • Provide a Website URL: You will also likely need to provide a "Website URL". You can use your project's website or a placeholder.

  • Save Changes: Save your settings.

Environment Variables

Create a .env file in the root of your project and add the following environment variables:

TWITTER_API_KEY="your_twitter_api_key"
TWITTER_API_SECRET_KEY="your_twitter_api_secret_key"

Installation

elizaos plugins add @mascotai/plugin-connections

Configuration

Add the plugin to your agent's character file:

{
  "plugins": ["@mascotai/plugin-connections"]
}

The plugin will expose a UI panel for managing connections.

License

MIT

Keywords

elizaos

FAQs

Package last updated on 04 Aug 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts