ProtoLinkAI ๐Ÿš€

by StevenROyola

2 stars
324 downloads
Not rated
GitHub Website

About

Simplifying MCP server interactions for seamless AI integration.

Details

Author
StevenROyola
GitHub stars
2
Downloads
324
Categories
Other

- Standardized tool wrapping using the MCP protocol
- Flexible addition or removal of tools per use case
- Pre-built tools for Twitter, crypto, time, weather, dictionary, calculator, currency, stocks, and ElizaOS
- Supports both local execution and Docker containerization
- Integrates with Claude Desktop via MCP configuration

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name ProtoLinkAI ๐Ÿš€
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Install via PyPI (pip install ProtoLinkai), then run locally with ProtoLinkai --local-timezone "America/New_York" or in a Docker container. Configure tools by modifying the agent in Python code or by updating server.py. For Twitter and ElizaOS integration, set environment variables in a .env file or Dockerfile.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "protolinkai \ud83d\ude80": {
            "ProtoLink": {
                "command": "docker",
                "args": [
                    "build",
                    "-t",
                    "ProtoLinkai",
                    "."
                ]
            }
        }
    }
}

McpServers

{
    "ProtoLink": {
        "command": "docker",
        "args": [
            "build",
            "-t",
            "ProtoLinkai",
            "."
        ]
    }
}

ProtoLinkAI ๐Ÿš€

ProtoLink AI is a standardized tool wrapping framework for implementing and managing diverse tools in a unified way. It is designed to help developers quickly integrate and launch tool-based use cases.

Key Features

- ๐Ÿ”ง Standardized Wrapping: Provides an abstraction layer for building tools using the MCP protocol. - ๐Ÿš€ Flexible Use Cases: Easily add or remove tools to fit your specific requirements. - โœจ Out-of-the-Box Tools: Includes pre-built tools for common scenarios: - ๐Ÿฆ Twitter Management: Automate tweeting, replying, and managing Twitter interactions. - ๐Ÿ’ธ Crypto: Get the latest cryptocurrency prices. - ๐Ÿค– ElizaOS Integration: Seamlessly connect and interact with ElizaOS for enhanced automation. - ๐Ÿ•‘ Time utilities - โ˜๏ธ Weather information (API) - ๐Ÿ“š Dictionary lookups - ๐Ÿงฎ Calculator for mathematical expressions - ๐Ÿ’ต Currency exchange (API) - ๐Ÿ“ˆ Stocks Data: Access real-time and historical stock market information. - [WIP] ๐Ÿ“ฐ News: Retrieve the latest news headlines.

Tech Stack ๐Ÿ› ๏ธ

- Python: Core programming language - MCP Framework: Communication protocol - Docker: Containerization

๐Ÿค” What is MCP?

The Model Context Protocol (MCP) is a cutting-edge standard for context sharing and management across AI models and systems. Think of it as the language AI agents use to interact seamlessly. ๐Ÿง โœจ

Hereโ€™s why MCP matters:

- ๐Ÿงฉ Standardization: MCP defines how context can be shared across models, enabling interoperability.
- โšก Scalability: Itโ€™s built to handle large-scale AI systems with high throughput.
- ๐Ÿ”’ Security: Robust authentication and fine-grained access control.
- ๐ŸŒ Flexibility: Works across diverse systems and AI architectures.

mcp_architecture
source
---

Installation ๐Ÿ“ฆ

Install via PyPI

pip install ProtoLinkai

---

Usage ๐Ÿ’ป

Run Locally

ProtoLinkai --local-timezone "America/New_York"

Run in Docker

1. Build the Docker image: docker build -t ProtoLinkai .

2. Run the container:
docker run -i --rm ProtoLinkai

---

Twitter Integration ๐Ÿฆ

MProtoLinkAI offers robust Twitter integration, allowing you to automate tweeting, replying, and managing Twitter interactions. This section provides detailed instructions on configuring and using the Twitter integration, both via Docker and .env + scripts/run_agent.sh.

Docker Environment Variables for Twitter Integration

When running ProtoLinkAI within Docker, it's essential to configure environment variables for Twitter integration. These variables are divided into two categories:

1. Agent Node Client Credentials

These credentials are used by the Node.js client within the agent for managing Twitter interactions.
ENV TWITTER_USERNAME=
ENV TWITTER_PASSWORD=
ENV TWITTER_EMAIL=

2. Tweepy (Twitter API v2) Credentials

These credentials are utilized by Tweepy for interacting with Twitter's API v2.
ENV TWITTER_API_KEY=
ENV TWITTER_API_SECRET=
ENV TWITTER_ACCESS_TOKEN=
ENV TWITTER_ACCESS_SECRET=
ENV TWITTER_CLIENT_ID=
ENV TWITTER_CLIENT_SECRET=
ENV TWITTER_BEARER_TOKEN=

Running ProtoLinkAI with Docker

1. Build the Docker image:

   docker build -t ProtoLinkai .

2. Run the container:

   docker run -i --rm ProtoLinkai

Running ProtoLink with .env + scripts/run_agent.sh

Setting Up Environment Variables

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

```dotenv
ANTHROPIC_API_KEY=your_anthropic_api_key
ELIZA_PATH=/path/to/eliza
TWITTER_USERNAME=your_twitter_username
TWITTER_EMAIL=your_twitter_email
TWITTER_PASSWORD=your_twitter_password
PERSONALITY_CONFIG=/path/to/personality_config.json
RUN_AGENT=True

No reviews yet โ€” be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.