ProtoLinkAI ๐
About
Simplifying MCP server interactions for seamless AI integration.
Details
- Author
- StevenROyola
- GitHub stars
- 2
- Downloads
- 324
- Categories
- Other
Jump to
- 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:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
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.
- 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.

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
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.



