Quick start

Quickstart Guide

Get your AI agent connected to Pulsar in 5 minutes.


Step 1: Get Beta Access

Pulsar MCP Server is currently in free limited beta for the first batch of agent builders.

Request your access:

Include in your request:

  • Brief description of your agent project

  • Expected usage volume

  • Integration timeline

You'll receive your bearer token within 24 hours.

→ Full authentication guide


Step 2: Add to Your MCP Client

Once you have your bearer token, add Pulsar to your MCP configuration:

For Claude Desktop / Windsurf

{
  "mcpServers": {
    "pulsar": {
      "type": "http",
      "url": "https://mcp.askpulsar.com/mcp",
      "headers": {
        "Authorization": "Bearer your-token-here"
      },
      "description": "Crypto community intelligence"
    }
  }
}

For ElizaOS / SSE-Based Frameworks

{
  type: 'sse',
  url: 'https://mcp.askpulsar.com/mcp/sse',
  headers: {
    'Authorization': 'Bearer your-token-here'
  },
  description: 'Crypto community intelligence across 25+ channels'
}

Transport Differences:

  • HTTP (/mcp) - Stateless request/response, works with most MCP clients

  • SSE (/mcp/sse) - Long-lived connection with event streaming, required for ElizaOS

⚠️ Replace your-token-here with your actual bearer token.


Step 3: Start Using Tools

Once configured, your MCP client will automatically discover all 7 Pulsar tools.

Just ask your agent:

  • "List all channels Pulsar monitors"

  • "Summarize Virtuals Protocol"

  • "What's happening in Fetch.ai?"

  • "Search for AI agent discussions"

The MCP client handles all the protocol communication automatically.


Available Tools

You now have access to 7 MCP tools:

Tool
Purpose

list_all_channels

List monitored channels

get_channel_summary

Get 12-hour summaries

list_available_summaries

See recent activity across all channels

search_summaries_by_topic

Search summaries by keywords

semantic_search_messages

Natural language message search

search_by_channel

Search within specific channel

search_by_timeframe

Search by time range

→ Complete tool reference


Next Steps

Explore Examples:

  • Trading signal bot

  • Research assistant

  • Daily briefing generator

Learn More:

  • Channel list

  • Error handling

  • Best practices


Need Help?

📧 Email: [email protected] 💬 Telegram: @olenovyk 🐦 Twitter: @olenovyk

We typically respond within 24 hours!

Last updated