Skip to main content
Glama

Archive Agent

install.sh2.31 kB
#!/bin/bash # Copyright © 2025 Dr.-Ing. Paul Wilhelm <paul@wilhelm.dev> # This file is part of Archive Agent. See LICENSE for details. # Exit on any error set -e # Script permissions chmod +x archive-agent.sh chmod +x audit.sh chmod +x manage-qdrant.sh echo "" echo ".------------." echo "| Install uv |" echo "'------------'" # https://docs.astral.sh/uv/getting-started/installation/#standalone-installer curl -LsSf https://astral.sh/uv/install.sh | sh echo "" echo ".---------------------." echo "| Install environment |" echo "'---------------------'" uv sync --extra dev echo "" echo ".---------------------." echo "| Install spaCy model |" echo "'---------------------'" uv run python -m spacy download en_core_web_md echo "" echo ".-----------------------." echo "| (sudo) Install pandoc |" echo "'-----------------------'" sudo apt update && sudo apt install -y pandoc # If 'ARCHIVE_AGENT_QDRANT_IN_MEMORY' is set, skip starting the Qdrant server. if [[ -n "${ARCHIVE_AGENT_QDRANT_IN_MEMORY:-}" ]]; then echo "" echo ".----------------------------------." echo "| Skipping Qdrant server (in-memory) |" echo "'----------------------------------'" echo "'ARCHIVE_AGENT_QDRANT_IN_MEMORY' is set; not running ./manage-qdrant.sh." else echo "" echo ".------------------------------." echo "| (sudo) Install Qdrant server |" echo "'------------------------------'" sudo ./manage-qdrant.sh start fi echo "" echo ".-----------------------." echo "| Install command alias |" echo "'-----------------------'" ALIAS_DEFINITION="alias archive-agent='$(pwd)/archive-agent.sh'" if grep -Fxq "$ALIAS_DEFINITION" ~/.bashrc; then echo "Alias 'archive-agent' already exists in ~/.bashrc." else echo "Adding 'archive-agent' alias to ~/.bashrc..." echo "$ALIAS_DEFINITION" >> ~/.bashrc echo "Alias added. Please run 'source ~/.bashrc' or open a new terminal to use it." fi echo "" echo ".---------------------------------------." echo "| Archive Agent: Successfully installed |" echo "'---------------------------------------'" echo "" echo "" echo ".---------------------------------------------------------------------." echo "| INFO: Please start a new shell session to start using archive-agent |" echo "'---------------------------------------------------------------------'" echo ""

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/shredEngineer/Archive-Agent'

If you have feedback or need assistance with the MCP directory API, please join our Discord server