Install
$ agentstack add mcp-jacopotagliabue-intro-to-ai-agents-columbia-2025 ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ● Environment & secrets Used
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Introduction to AI agents (Columbia University 2025)
Overview
This repo contains code snippets used for my 2025 lecture at Columbia University, an introduction to AI Agents (slides here) titled: "From LLMs to agents: The road to autonomy is paved with good intentions".
Setup
Python
We use uv to manage the environment. To set up the environment, run:
uv sync
LLM
We use Anthropic APIs for the LLM backend. Make sure to create a .env file in src directory using local.env as a template. If you prefer to use other models, we rely on LiteLLM interface, so it should be straightforward to swap out the model backend. Make sure to change both the .env and the LLM init accordingly.
Running the code
To run the code snippets, navigate to the src directory and execute the desired Python script with uv, for example:
cd src
uv run text_to_tool_to_text.py
Please refer to the slides for the general context and the AI background. The code has been developed for educational purposes only, using Claude Code as an AI assistant throughout the development process.
A standalone Fast MCP server can be found in the fast_mcp directory, to showcase how to build and leverage a minimal server inside of an agentic loop: the server gets automatically called from the agent_with_mcp.py script, but could also be run in a standalone fashion.
License
This project is provided "as is" and it is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: jacopotagliabue
- Source: jacopotagliabue/intro-to-ai-agents-columbia-2025
- License: MIT
- Homepage: https://jacopotagliabue.it/
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.