TRIGGERcmd
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login

    I used the local TRIGGERcmd stdio mcp server with a local LLM with Ollama and Open WebUI

    Scheduled Pinned Locked Moved MCP
    1 Posts 1 Posters 868 Views 1 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • RussR Offline
      Russ
      last edited by Russ

      ddd1e4a9-b0f0-4077-80ce-b3e66bc283cd-image.png

      I used this bash script to run an MCP/OpenAI proxy server in Ubuntu under WSL:

      #!/bin/bash -xv
      curl -O https://agents.triggercmd.com/triggercmd-mcp/triggercmd-mcp-linux-amd64
      chmod +x triggercmd-mcp-linux-amd64
      
      docker build -t mcp-proxy-server .
      docker run -it -p 8000:8000 -e TRIGGERCMD_TOKEN="my triggercmd token" mcp-proxy-server
      

      This is my Dockerfile:

      FROM python:3.11-slim
      WORKDIR /app
      RUN pip install mcpo uv
      
      COPY triggercmd-mcp-linux-amd64 /triggercmd-mcp-linux-amd64
      
      # Replace with your MCP server command; example: uvx mcp-server-time
      CMD ["uvx", "mcpo", "--host", "0.0.0.0", "--port", "8000", "--api-key", "top-secret", "--", "/triggercmd-mcp-linux-amd64" ]
      

      This is how you set it up in the Settings - External Tools - Manage Tool Servers:

      00e91ceb-1dab-4a65-ade4-b82f0267c3cc-image.png

      Russell VanderMey

      1 Reply Last reply Reply Quote 0

      Hello! It looks like you're interested in this conversation, but you don't have an account yet.

      Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

      With your input, this post could be even better 💗

      Register Login
      • First post
        Last post