- Added firefly-iii-mcp (v1.3.0) for personal finance management - Uses npm package @firefly-iii-mcp/local instead of source build - Requires FIREFLY_III_BASE_URL and FIREFLY_III_PAT env vars - Added paperless-mcp (v1.0.0) for document management - Requires PAPERLESS_URL and PAPERLESS_TOKEN CLI args - Created wrapper scripts for Crush integration - Updated docker-compose.yml with new services - Updated .env.example with required environment variables - Added Financial & Budgeting category to README.md Both servers validated with MCP protocol handshake. Working MCP servers count: 27 💘 Generated with Crush Assisted-by: GLM-5 via Crush <crush@charm.land>
16 lines
559 B
Bash
Executable File
16 lines
559 B
Bash
Executable File
#!/bin/bash
|
|
# Firefly III MCP wrapper script for Crush
|
|
CONTAINER_NAME="kneldevstack-aimiddleware-firefly-iii-mcp-crush"
|
|
|
|
# Force remove existing container (suppress output)
|
|
docker rm -f "${CONTAINER_NAME}" >/dev/null 2>&1 || true
|
|
sleep 0.5
|
|
|
|
# Run container with explicit name and environment variables
|
|
docker run -i --rm \
|
|
--name "${CONTAINER_NAME}" \
|
|
-e FIREFLY_III_BASE_URL="${FIREFLY_III_BASE_URL:-}" \
|
|
-e FIREFLY_III_PAT="${FIREFLY_III_PAT:-}" \
|
|
-e FIREFLY_III_PRESET="${FIREFLY_III_PRESET:-default}" \
|
|
kneldevstack-aimiddleware-firefly-iii-mcp
|