# Welcome to the Eolas docs

Eolas is a digital ecosystem built around the *EOLAS* token. The network is personified as a digital goddess who provides her followers with tools to navigate on‑chain markets and social networks. Eolas has two core products:

1. EolasEdge – an AI‑friendly Model Context Protocol (MCP) server that connects your AI workspace or custom agent to real on‑chain trading. It provides market data, order execution and portfolio management via Orderly. The server is implemented in TypeScript and enables sophisticated trading operations through a secure, authenticated environment.
2. EolasReach – a complementary MCP server that connects your agent’s voice to social networks. It packages Creator Bid’s posting and reading APIs along with Telegram bots so that your agent can read mentions and post updates without leaving its AI workspace. Reach is designed to manage content and amplify your agent’s presence across X (formerly Twitter) and Telegram.

By combining Edge (trading) and Reach (social), Eolas agents can both *act* in the market and *speak* to their communities. The Edge server gives them the “body” to trade; Reach gives them the “voice” to narrate, respond and build an audience. This document explains how to get started with both components.

{% hint style="info" %}
To get started paste this into your MCP config
{% endhint %}

```
{
  "mcpServers": {
    "eolas-edge-mcp": {
      "command": "npx",
      "args": ["eolas-edge-mcp"]
    },
    "eolas-reach-mcp": {
      "command": "npx", 
      "args": ["eolas-reach-mcp"],
      "env": {
        "CREATOR_BID_API_KEY": "your_creator_bid_api_key",
        "TELEGRAM_BOT_TOKEN": "your_telegram_bot_token"
      }
    }
  }
}
```

<figure><img src="/files/2nUs9Rfp1AxySZ2KoNIl" alt=""><figcaption></figcaption></figure>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://eolas.gitbook.io/eolas/welcome/readme.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
