Skip to content

Dolphin MCP

A flexible Python library and CLI tool for interacting with Model Context Protocol (MCP) servers using any LLM model.

About

Dolphin MCP 는 여러 MCP 서버와 상호작용을 매우 간단하게 만드는 오픈 소스 파이썬 라이브러리 및 CLI 도구입니다(원하는 만큼 사용할 수 있습니다). 이 도구는 모듈성을 강조하며 사용의 용이성을 제공합니다. OpenAI, Anthropic, Ollama와 같은 다양한 언어 모델 및 Deepseek과 같은 외부 데이터 소스와 통합하기 위한 깔끔한 API를 제공합니다. 작업의 필요에 따라 모델을 간단히 전환할 수 있습니다!

Ollama config

{
  "mcpServers": {
    "dolphin-demo-database-sqlite": {
      "command": "uvx",
      "args": [
        "mcp-server-sqlite",
        "--db-path",
        "~/.dolphin/dolphin.db"
      ]
    } 
  },
  "models": [
    {
      "model": "llama3.3:70b-instruct-q3_K_M",
      "title": "llama3.3:70b",
      "client": "http://mammoth:11434",
      "keep_alive_seconds":"240",
      "provider": "ollama"
    },
    {
      "model": "qwen2.5:72b-instruct-q3_K_S",
      "title": "qwen2.5:72b",
      "client": "http://mammoth:11434",
      "keep_alive_seconds":"240",
      "provider": "ollama"
    }
  ]
}

See also

Favorite site