Speelka Agent

Speelka Agent

Universal LLM Agent based on MCP

korchasa

Research & Data
Visit Server

README

Speelka Agent

Universal LLM agent based on the Model Context Protocol (MCP), with the ability to utilize tools from other MCP servers.

flowchart TB
    User["Any MCP Client"] --> |"1. Request"| Agent["Speelka Agent"]
    Agent --> |"2. Format prompt"| LLM["LLM Service"]
    LLM --> |"3. Tool calls"| Agent
    Agent --> |"4. Execute tools"| Tools["External MCP Tools"]
    Tools --> |"5. Return results"| Agent
    Agent --> |"6. Process repeat"| LLM
    Agent --> |"7. Final answer"| User

Key Features

  • Precise Agent Definition: Define detailed agent behavior through prompt engineering
  • Client-Side Context Optimization: Reduce context size on the client side for more efficient token usage
  • LLM Flexibility: Use different LLM providers between client and agent sides
  • Centralized Tool Management: Single point of control for all available tools
  • Multiple Integration Options: Support for MCP stdio, MCP HTTP, and Simple HTTP API
  • Built-in Reliability: Retry mechanisms for handling transient failures
  • Extensibility: System behavior extensions without client-side changes
  • MCP-Aware Logging: Structured logging with MCP notifications
  • Token Management: Automatic token counting and history compaction
  • Flexible Configuration: Support for environment variables, YAML, and JSON configuration files

Getting Started

Prerequisites

  • Go 1.19 or higher
  • LLM API credentials (OpenAI or Anthropic)
  • External MCP tools (optional)

Installation

git clone https://github.com/korchasa/speelka-agent-go.git
cd speelka-agent-go
go build ./cmd/server

Configuration

Configuration can be provided using YAML, JSON, or environment variables.

Note: The ./examples directory is deprecated and will be removed in a future version. Please use the examples in the ./site/examples directory instead.

Example configuration files are available in the site/examples directory:

  • site/examples/simple.yaml: Basic agent configuration in YAML format (preferred)
  • site/examples/ai-news.yaml: AI news agent configuration in YAML format (preferred)
  • site/examples/simple.json: Basic agent configuration in JSON format
  • site/examples/simple.env: Basic agent configuration as environment variables

Here's a simple YAML configuration example:

agent:
  name: "simple-speelka-agent"
  version: "1.0.0"

  # Tool configuration
  tool:
    name: "process"
    description: "Process tool for handling user queries with LLM"
    argument_name: "input"
    argument_description: "The user query to process"

  # LLM configuration
  llm:
    provider: "openai"
    api_key: ""  # Set via environment variable instead for security
    model: "gpt-4o"
    temperature: 0.7
    prompt_template: "You are a helpful AI assistant. Respond to the following request: {{input}}. Provide a detailed and helpful response. Available tools: {{tools}}"

  # MCP Server connections
  connections:
    mcpServers:
      time:
        command: "docker"
        args: ["run", "-i", "--rm", "mcp/time"]

      filesystem:
        command: "mcp-filesystem-server"
        args: ["/path/to/directory"]

# Runtime configuration
runtime:
  log:
    level: "info"

  transports:
    stdio:
      enabled: true

Using Environment Variables

All environment variables are prefixed with SPL_:

Environment Variable Default Value Description
Agent Configuration
SPL_AGENT_NAME Required Name of the agent
SPL_AGENT_VERSION "1.0.0" Version of the agent
Tool Configuration
SPL_TOOL_NAME Required Name of the tool provided by the agent
SPL_TOOL_DESCRIPTION Required Description of the tool functionality
SPL_TOOL_ARGUMENT_NAME Required Name of the argument for the tool
SPL_TOOL_ARGUMENT_DESCRIPTION Required Description of the argument for the tool
LLM Configuration
SPL_LLM_PROVIDER Required Provider of LLM service (e.g., "openai", "anthropic")
SPL_LLM_API_KEY Required API key for the LLM provider
SPL_LLM_MODEL Required Model name (e.g., "gpt-4o", "claude-3-opus-20240229")
SPL_LLM_MAX_TOKENS 0 Maximum tokens to generate (0 means no limit)
SPL_LLM_TEMPERATURE 0.7 Temperature parameter for randomness in generation
SPL_LLM_PROMPT_TEMPLATE Required Template for system prompts (must include placeholder matching the SPL_TOOL_ARGUMENT_NAME value and {{tools}})
Chat Configuration
SPL_CHAT_MAX_ITERATIONS 25 Maximum number of LLM iterations
SPL_CHAT_MAX_TOKENS 0 Maximum tokens in chat history (0 means based on model)
SPL_CHAT_COMPACTION_STRATEGY "delete-old" Strategy for compacting chat history ("delete-old", "delete-middle")
LLM Retry Configuration
SPL_LLM_RETRY_MAX_RETRIES 3 Maximum number of retry attempts for LLM API calls
SPL_LLM_RETRY_INITIAL_BACKOFF 1.0 Initial backoff time in seconds
SPL_LLM_RETRY_MAX_BACKOFF 30.0 Maximum backoff time in seconds
SPL_LLM_RETRY_BACKOFF_MULTIPLIER 2.0 Multiplier for increasing backoff time
MCP Servers Configuration
SPL_MCPS_0_ID "" Identifier for the first MCP server
SPL_MCPS_0_COMMAND "" Command to execute for the first server
SPL_MCPS_0_ARGS "" Command arguments as space-separated string
SPL_MCPS_0_ENV_* "" Environment variables for the server (prefix with SPL_MCPS_0_ENV_)
SPL_MCPS_1_ID, etc. "" Configuration for additional servers (increment index)
MCP Retry Configuration
SPL_MSPS_RETRY_MAX_RETRIES 3 Maximum number of retry attempts for MCP server connections
SPL_MSPS_RETRY_INITIAL_BACKOFF 1.0 Initial backoff time in seconds
SPL_MSPS_RETRY_MAX_BACKOFF 30.0 Maximum backoff time in seconds
SPL_MSPS_RETRY_BACKOFF_MULTIPLIER 2.0 Multiplier for increasing backoff time
Runtime Configuration
SPL_LOG_LEVEL "info" Log level (debug, info, warn, error)
SPL_LOG_OUTPUT "stderr" Log output destination (stdout, stderr, file path)
SPL_RUNTIME_STDIO_ENABLED true Enable stdin/stdout transport
SPL_RUNTIME_STDIO_BUFFER_SIZE 8192 Buffer size for stdio transport
SPL_RUNTIME_HTTP_ENABLED false Enable HTTP transport
SPL_RUNTIME_HTTP_HOST "localhost" Host for HTTP server
SPL_RUNTIME_HTTP_PORT 3000 Port for HTTP server

For more detailed information about configuration options, see Environment Variables Reference.

Running the Agent

Daemon Mode (HTTP Server)

./speelka-agent --daemon [--config config.yaml]

CLI Mode (Standard Input/Output)

./speelka-agent [--config config.yaml]

Usage Examples

HTTP API

When running in daemon mode, the agent exposes HTTP endpoints:

# Send a request to the agent
curl -X POST http://localhost:3000/message -H "Content-Type: application/json" -d '{
  "method": "tools/call",
  "params": {
    "name": "process",
    "arguments": {
      "input": "Your query here"
    }
  }
}'

External Tool Integration

Connect to external tools using the MCP protocol in your YAML configuration:

agent:
  # ... other agent configuration ...
  connections:
    mcpServers:
      # MCP server for Playwright browser automation
      playwright:
        command: "mcp-playwright"
        args: []

      # MCP server for filesystem operations
      filesystem:
        command: "mcp-filesystem-server"
        args: ["."]

Or using environment variables:

# MCP server for Playwright browser automation
export SPL_MCPS_0_ID="playwright"
export SPL_MCPS_0_COMMAND="mcp-playwright"
export SPL_MCPS_0_ARGS=""

# MCP server for filesystem operations
export SPL_MCPS_1_ID="filesystem"
export SPL_MCPS_1_COMMAND="mcp-filesystem-server"
export SPL_MCPS_1_ARGS="."

Supported LLM Providers

  • OpenAI: GPT-3.5, GPT-4, GPT-4o
  • Anthropic: Claude models

Documentation

For more detailed information, see:

Development

Running Tests

go test ./...

Helper Commands

The run script provides commands for common operations:

# Development
./run build        # Build the project
./run test         # Run tests with coverage
./run check        # Run all checks
./run lint         # Run linter

# Interaction
./run call         # Test with simple query
./run call-multistep # Test with multi-step query
./run call-news    # Test news agent
./run fetch_url    # Fetch a URL using MCP

# Inspection
./run inspect      # Run with MCP inspector

See Command Reference for more options.

License

MIT License

Recommended Servers

Crypto Price & Market Analysis MCP Server

Crypto Price & Market Analysis MCP Server

A Model Context Protocol (MCP) server that provides comprehensive cryptocurrency analysis using the CoinCap API. This server offers real-time price data, market analysis, and historical trends through an easy-to-use interface.

Featured
TypeScript
MCP PubMed Search

MCP PubMed Search

Server to search PubMed (PubMed is a free, online database that allows users to search for biomedical and life sciences literature). I have created on a day MCP came out but was on vacation, I saw someone post similar server in your DB, but figured to post mine.

Featured
Python
dbt Semantic Layer MCP Server

dbt Semantic Layer MCP Server

A server that enables querying the dbt Semantic Layer through natural language conversations with Claude Desktop and other AI assistants, allowing users to discover metrics, create queries, analyze data, and visualize results.

Featured
TypeScript
mixpanel

mixpanel

Connect to your Mixpanel data. Query events, retention, and funnel data from Mixpanel analytics.

Featured
TypeScript
Sequential Thinking MCP Server

Sequential Thinking MCP Server

This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.

Featured
Python
Nefino MCP Server

Nefino MCP Server

Provides large language models with access to news and information about renewable energy projects in Germany, allowing filtering by location, topic (solar, wind, hydrogen), and date range.

Official
Python
Vectorize

Vectorize

Vectorize MCP server for advanced retrieval, Private Deep Research, Anything-to-Markdown file extraction and text chunking.

Official
JavaScript
Mathematica Documentation MCP server

Mathematica Documentation MCP server

A server that provides access to Mathematica documentation through FastMCP, enabling users to retrieve function documentation and list package symbols from Wolfram Mathematica.

Local
Python
kb-mcp-server

kb-mcp-server

An MCP server aimed to be portable, local, easy and convenient to support semantic/graph based retrieval of txtai "all in one" embeddings database. Any txtai embeddings db in tar.gz form can be loaded

Local
Python
Research MCP Server

Research MCP Server

The server functions as an MCP server to interact with Notion for retrieving and creating survey data, integrating with the Claude Desktop Client for conducting and reviewing surveys.

Local
Python