Tiny-OAI-MCP-Agent

A MCP protocol agent that operates a SQLite using natural language by OpenAI-Compatible LLM.

GitHub Stars

24

User Rating

Not Rated

Favorites

0

Views

22

Forks

0

Issues

0

Installation
Difficulty
Intermediate
Estimated Time
10-20 minutes

Installation

Add .env to the project according to .env.template and fill in your OPENAI service provider information. Please refer to the format of the service providers I have tested below: ✅ [OpenRouter](https://openrouter.ai/) + [qwen-turbo](https://openrouter.ai/qwen/qwen-turbo)

OPENAI_API_KEY='sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
OPENAI_API_BASE='https://openrouter.ai/api/v1'
LLM_MODEL='qwen/qwen-turbo'
✅ [OpenRouter](https://openrouter.ai/) + [qwen-max](https://openrouter.ai/qwen/qwen-max)

OPENAI_API_KEY='sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
OPENAI_API_BASE='https://openrouter.ai/api/v1'
LLM_MODEL='qwen/qwen-max'
✅ [OpenRouter](https://openrouter.ai/) + [gpt-4o-mini](https://openrouter.ai/openai/gpt-4o-mini)

OPENAI_API_KEY='sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
OPENAI_API_BASE='https://openrouter.ai/api/v1'
LLM_MODEL='openai/gpt-4o-mini'

Additional Resources