https://github.com/vinit-source/gemini-agent-strands-and-mcp
Learning AWS Strands and MCP.
https://github.com/vinit-source/gemini-agent-strands-and-mcp
Last synced: 9 months ago
JSON representation
Learning AWS Strands and MCP.
- Host: GitHub
- URL: https://github.com/vinit-source/gemini-agent-strands-and-mcp
- Owner: Vinit-source
- License: apache-2.0
- Created: 2025-10-04T14:37:11.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-10-04T14:54:21.000Z (9 months ago)
- Last Synced: 2025-10-04T16:25:10.070Z (9 months ago)
- Language: Python
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Gemini-Agent-Strands-and-MCP
Learnings from the different repositories within the [Strands Agents](https://github.com/strands-agents).
## Setup Instructions
1. Clone the repository:
```bash
git clone https://github.com/Vinit-source/Gemini-Agent-Strands-and-MCP.git
cd Gemini-Agent-Strands-and-MCP
```
2. Run the setup script:
```bash
chmod +x setup.sh
./setup.sh
```
3. Create .env:
```
GEMINI_API_KEY='your_gemini_api_key' // Generate your own Gemini API key from [here](https://aistudio.google.com/api-keys).
```
4. Run mcp_calculator.py:
```bash
uv run mcp_calculator.py
```
## Note
You can import `geminiAgent.py` in your own scripts to utilize Strands and MCP functionalities.
```python
from geminiAgent import GeminiAgent # Use this in place of the Agent class of Strands
```