https://github.com/av/tools

Docker image for installing and running tools for LLM agents (MCP, OpenAPI, UVX, NPX, Python)

https://github.com/av/tools

Science Score: 13.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (5.9%) to scientific vocabulary

Keywords

agents containerization docker image llm mcp openapi package tools
Last synced: 5 months ago · JSON representation

Repository

Docker image for installing and running tools for LLM agents (MCP, OpenAPI, UVX, NPX, Python)

Basic Info
  • Host: GitHub
  • Owner: av
  • License: mit
  • Language: Dockerfile
  • Default Branch: main
  • Homepage:
  • Size: 24.4 KB
Statistics
  • Stars: 9
  • Watchers: 1
  • Forks: 1
  • Open Issues: 0
  • Releases: 2
Topics
agents containerization docker image llm mcp openapi package tools
Created 11 months ago · Last pushed 11 months ago
Metadata Files
Readme Funding License

README.md

./assets/tools.png

Docker image for installing and running tools for LLM agents (MCP, OpenAPI, UVX, NPX, Python)

Features

  • Python / Node.js runtime - includes python, node, uvx, npx
  • Includes extra packages for managing MCP/OpenAPI tools and connections
  • Utils: curl, jq, git
  • Easy unified cache at /app/cache for all tools

Usage

```bash

Launch MCP tools in stdio mode

docker run ghcr.io/av/tools uvx mcp-server-time

Bridge from MCP to OpenAPI

docker run -p 8000:8000 ghcr.io/av/tools uvx mcpo -- uvx mcp-server-time --local-timezone=America/New_York

http://0.0.0.0:8000/docs -> see endpoint documentation

Run MCP inspector

docker run -p 6274:6274 -p 6277:6277 ghcr.io/av/tools npx @modelcontextprotocol/inspector

Persist the cache volume for quick restarts

-v cache:/app/cache - named docker volume

-v /path/to/my/cache:/app/cache - cache on the host

docker run -v cache:/app/cache ghcr.io/av/tools uvx mcp-server-time ```

In docker compose:

```yaml services: time: image: ghcr.io/av/tools command: uvx mcp-server-time volumes: - cache:/app/cache

fetch: image: ghcr.io/av/tools command: uvx mcpo -- uvx mcp-server-fetch ports: - 7133:8000 volumes: - cache:/app/cache ```


Check out Harbor for a complete dockerized LLM environment.

Owner

  • Name: Ivan Charapanau
  • Login: av
  • Kind: user
  • Location: Warszawa

GitHub Events

Total
  • Release event: 4
  • Watch event: 5
  • Push event: 6
  • Fork event: 1
  • Create event: 6
Last Year
  • Release event: 4
  • Watch event: 5
  • Push event: 6
  • Fork event: 1
  • Create event: 6

Issues and Pull Requests

Last synced: 11 months ago

All Time
  • Total issues: 0
  • Total pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Total issue authors: 0
  • Total pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels

Dependencies

.github/workflows/build-image.yml actions
  • actions/checkout v4 composite
  • docker/build-push-action v6 composite
  • docker/login-action v3 composite
  • docker/metadata-action v4 composite
  • docker/setup-buildx-action v3 composite
Dockerfile docker
  • ghcr.io/astral-sh/uv debian build