mkinf

mkinf SDKは、アプリケーションにMCPサーバーを簡単に統合できる強力なツールキットです。ユーザーは、シンプルで統一されたインターフェースを通じて、専門的なAI機能のエコシステムにアクセスできます。無料アカウントの作成やAPIキーの設定、SDKのインストール手順が明記されており、初心者でも扱いやすい設計です。

GitHubスター

134

ユーザー評価

未評価

お気に入り

0

閲覧数

3

フォーク

9

イシュー

4

README
mkinf SDK

PyPI - Version

The mkinf SDK is a powerful toolkit that allows you to easily integrate MCP servers into your applications. With mkinf, you can access a growing ecosystem of specialized AI capabilities through a simple, unified interface.

Getting Started

Follow these steps to start using mkinf in your projects:

1. Create a mkinf Account

Sign up for a free account at hub.mkinf.io/signup.
During the beta period, all accounts receive unlimited free credits

2. Configure Your API Key
  1. Go to API Keys settings
  2. Create an organization if you haven't already
  3. Generate and copy your API key
  4. Add the key to your project's .env file:
MKINF_API_KEY=sk-org-...
3. Install the SDK

Install the mkinf SDK using pip:

pip install mkinf

For specific versions, check the PyPI repository.

4. Find an AI Agent

Browse available AI Agents at mkinf hub and select an agent that matches your use case

image

5. Import and Use the Agent

Check the "Use Agent" section of your chosen repository for import instructions

image

Import the agent into your code

from mkinf import hub as mh

tools = mh.pull(
    ["ScrapeGraphAI/scrapegraphai"],
    env={
        "SCRAPEGRAPH_LLM_MODEL": "openai/gpt-4o-mini",
        "SCRAPEGRAPH_LLM_API_KEY": os.getenv("OPENAI_API_KEY")
    }
)

[!NOTE]
Remember to configure any required environment variables specified in the agent's documentation.

Current Limitations

[!WARNING]
Currently, mkinf tools are compatible with LangChain chains and graphs. Support for other frameworks like CrewAI, AutoGen, and SmolAgents is coming soon.

Example

You can run the included Streamlit example to see mkinf in action:

uv run sync --dev
uv run example
作者情報
mkinf

Streamline deployment of AI agents

Italy

113

フォロワー

6

リポジトリ

0

Gist

0

貢献数

関連するMCP
instagram_dm_mcp logo

このプロジェクトは、Instagramのダイレクトメッセージを送信するためのMCPサーバーです。Pythonで実装されており、Anthropic ClaudeやCursorと連携することで、さまざまな機能を提供します。インストールは簡単で、環境変数を使用してInstagramの認証情報を設定できます。将来的にはさらなる機能追加が予定されています。

Python
mcp-client-for-ollama logo

mcp-client-for-ollamaは、Ollamaを使用してModel Context Protocol(MCP)サーバーと対話するためのシンプルで強力なPythonクライアントです。このクライアントを利用することで、ローカルの大規模言語モデル(LLM)がツールを使用できるようになります。主にAPIとの通信を行い、効率的なワークフローを実現します。

Python
mcp-telegram logo

mcp-telegramは、Large Language Models(LLMs)をTelegramと接続するためのPythonライブラリです。Model Context Protocol(MCP)を使用して、AIエージェントがTelegram上でメッセージの送信、編集、削除、チャットの検索、ドラフトの管理、メディアのダウンロードなどを行うことを可能にします。Telethonを基盤にしており、MTProtoを利用しています。

Python