LogoLogo
DocsGitHubDiscordOpenServ.ai
  • OpenServ Docs
  • Getting Started
    • Quickstart Guide
    • No Code Builder
    • Agent Starter SDK
    • OpenServ API
  • How to...
    • Create An Agent API Key
    • Deploy Your Agent To Production
  • Demos and Tutorials
    • Agents Examples
    • DexScreener
    • GOAT Wallet
    • Perplexity Sonar Pro Agent
    • API Python Agent
    • API TypeScript Agent
    • Multi AI Agents Demo
    • Connect Figma MCP to OpenServ
  • Resources
    • TypeScript SDK Framework Architecture
    • Contribution Guide
    • Code of Conduct
    • FAQ
Powered by GitBook
LogoLogo

Product

  • OpenServ.ai
  • YouTube

Community

  • Discord
  • X

© 2025 OpenServ Labs Ltd. All Rights Reserved.

On this page
  • Getting Started
  • Project Structure
  • Contributing
  • License

Was this helpful?

Edit on GitHub
Export as PDF
  1. Demos and Tutorials

Agents Examples

PreviousDeploy Your Agent To ProductionNextDexScreener

Last updated 2 months ago

Was this helpful?

A collection of autonomous AI agents built with OpenServ and framework. Each agent demonstrates different capabilities and use cases.

Getting Started

  1. Clone the repository:

git clone https://github.com/openserv-labs/agent-examples.git
  1. Navigate to the agent directory you want to try, ex:

cd dexscreener-analytics
  1. Install dependencies:

npm install
  1. Set up environment variables:

cp .env.example .env
# Edit .env and add your API keys
  1. Run the agents:

npm run dev

Project Structure

/
├── dexscreener-analytics/      # DexScreener analytics agent
│   ├── index.ts                # Agent implementation
│   ├── package.json            # Agent dependencies
│   └── tsconfig.json           # TypeScript config
│   └── .env.example            # Example environment file
└── goat-agent/                 # GOAT wallet agent
│   ├── index.ts                # Agent implementation
│   ├── package.json            # Agent dependencies
│   └── tsconfig.json           # TypeScript config
│   └── .env.example            # Example environment file
├── perplexity-sonar-pro/          # Perplexity search agent with the Sonar Pro API
│   ├── index.ts                    # Agent implementation
│   ├── client.ts                   # Perplexity API client
│   ├── package.json                # Agent dependencies
│   └── tsconfig.json               # TypeScript config
│   └── .env.example                # Example environment file
└── README.md                       # Main documentation

Contributing

We welcome contributions! If you'd like to add a new agent example:

  1. Create a new directory with a descriptive name

  2. Include a comprehensive README.md in your agent's directory

  3. Follow the existing code structure and documentation patterns

  4. Submit a pull request with your changes

License

MIT
API
SDK

Twitter Agent

An AI marketing manager with capabilities to post tweets through the OpenServ Twitter integration. This agent can craft and send marketing tweets based on your business objectives.

An agent that provides real-time token analytics using DexScreener's API. Filter and analyze tokens by various criteria like volume, market cap, liquidity, and age.

A wallet agent that can interact with the blockchain and perform transactions.

An agent that performs web searches using Perplexity's Sonar Pro API, providing detailed responses with source citations.

DexScreener Analytics
GOAT Wallet
Perplexity Sonar Pro