├── .github └── copilot-instructions.md ├── .gitignore ├── PUBLISHED_PACKAGES.md ├── README.md ├── example_mcp_settings.json ├── information-retrieval-server ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── src │ └── index.ts └── tsconfig.json ├── media-tools-server ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── src │ └── index.ts └── tsconfig.json ├── pdf-creator-server ├── README.md ├── pdf_creator_server.py ├── requirements.txt └── setup.py └── presentation-creator-server ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── presentation_creator_server.py ├── requirements.txt ├── src └── index.ts └── tsconfig.json /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Godzilla675/agentic-ai-tool-suite/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Godzilla675/agentic-ai-tool-suite/HEAD/.gitignore -------------------------------------------------------------------------------- /PUBLISHED_PACKAGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Godzilla675/agentic-ai-tool-suite/HEAD/PUBLISHED_PACKAGES.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Godzilla675/agentic-ai-tool-suite/HEAD/README.md -------------------------------------------------------------------------------- /example_mcp_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Godzilla675/agentic-ai-tool-suite/HEAD/example_mcp_settings.json -------------------------------------------------------------------------------- /information-retrieval-server/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | build/ 3 | *.log 4 | .env* -------------------------------------------------------------------------------- /information-retrieval-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Godzilla675/agentic-ai-tool-suite/HEAD/information-retrieval-server/README.md -------------------------------------------------------------------------------- /information-retrieval-server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Godzilla675/agentic-ai-tool-suite/HEAD/information-retrieval-server/package-lock.json -------------------------------------------------------------------------------- /information-retrieval-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Godzilla675/agentic-ai-tool-suite/HEAD/information-retrieval-server/package.json -------------------------------------------------------------------------------- /information-retrieval-server/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Godzilla675/agentic-ai-tool-suite/HEAD/information-retrieval-server/src/index.ts -------------------------------------------------------------------------------- /information-retrieval-server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Godzilla675/agentic-ai-tool-suite/HEAD/information-retrieval-server/tsconfig.json -------------------------------------------------------------------------------- /media-tools-server/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | build/ 3 | *.log 4 | .env* -------------------------------------------------------------------------------- /media-tools-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Godzilla675/agentic-ai-tool-suite/HEAD/media-tools-server/README.md -------------------------------------------------------------------------------- /media-tools-server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Godzilla675/agentic-ai-tool-suite/HEAD/media-tools-server/package-lock.json -------------------------------------------------------------------------------- /media-tools-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Godzilla675/agentic-ai-tool-suite/HEAD/media-tools-server/package.json -------------------------------------------------------------------------------- /media-tools-server/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Godzilla675/agentic-ai-tool-suite/HEAD/media-tools-server/src/index.ts -------------------------------------------------------------------------------- /media-tools-server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Godzilla675/agentic-ai-tool-suite/HEAD/media-tools-server/tsconfig.json -------------------------------------------------------------------------------- /pdf-creator-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Godzilla675/agentic-ai-tool-suite/HEAD/pdf-creator-server/README.md -------------------------------------------------------------------------------- /pdf-creator-server/pdf_creator_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Godzilla675/agentic-ai-tool-suite/HEAD/pdf-creator-server/pdf_creator_server.py -------------------------------------------------------------------------------- /pdf-creator-server/requirements.txt: -------------------------------------------------------------------------------- 1 | fastmcp 2 | playwright 3 | python-dotenv 4 | Pillow 5 | -------------------------------------------------------------------------------- /pdf-creator-server/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Godzilla675/agentic-ai-tool-suite/HEAD/pdf-creator-server/setup.py -------------------------------------------------------------------------------- /presentation-creator-server/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | build/ 3 | *.log 4 | .env* -------------------------------------------------------------------------------- /presentation-creator-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Godzilla675/agentic-ai-tool-suite/HEAD/presentation-creator-server/README.md -------------------------------------------------------------------------------- /presentation-creator-server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Godzilla675/agentic-ai-tool-suite/HEAD/presentation-creator-server/package-lock.json -------------------------------------------------------------------------------- /presentation-creator-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Godzilla675/agentic-ai-tool-suite/HEAD/presentation-creator-server/package.json -------------------------------------------------------------------------------- /presentation-creator-server/presentation_creator_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Godzilla675/agentic-ai-tool-suite/HEAD/presentation-creator-server/presentation_creator_server.py -------------------------------------------------------------------------------- /presentation-creator-server/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Godzilla675/agentic-ai-tool-suite/HEAD/presentation-creator-server/requirements.txt -------------------------------------------------------------------------------- /presentation-creator-server/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Godzilla675/agentic-ai-tool-suite/HEAD/presentation-creator-server/src/index.ts -------------------------------------------------------------------------------- /presentation-creator-server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Godzilla675/agentic-ai-tool-suite/HEAD/presentation-creator-server/tsconfig.json --------------------------------------------------------------------------------