mkinf
mkinf SDKは、アプリケーションにMCPサーバーを簡単に統合できる強力なツールキットです。ユーザーは、シンプルで統一されたインターフェースを通じて、専門的なAI機能のエコシステムにアクセスできます。無料アカウントの作成やAPIキーの設定、SDKのインストール手順が明記されており、初心者でも扱いやすい設計です。
GitHubスター
134
ユーザー評価
未評価
お気に入り
0
閲覧数
3
フォーク
9
イシュー
4
mkinf SDK
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.
2. Configure Your API Key
- Go to API Keys settings
- Create an organization if you haven't already
- Generate and copy your API key
- 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
5. Import and Use the Agent
Check the "Use Agent" section of your chosen repository for import instructions
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
このプロジェクトは、Instagramのダイレクトメッセージを送信するためのMCPサーバーです。Pythonで実装されており、Anthropic ClaudeやCursorと連携することで、さまざまな機能を提供します。インストールは簡単で、環境変数を使用してInstagramの認証情報を設定できます。将来的にはさらなる機能追加が予定されています。
mcp-client-for-ollamaは、Ollamaを使用してModel Context Protocol(MCP)サーバーと対話するためのシンプルで強力なPythonクライアントです。このクライアントを利用することで、ローカルの大規模言語モデル(LLM)がツールを使用できるようになります。主にAPIとの通信を行い、効率的なワークフローを実現します。
mcp-telegramは、Large Language Models(LLMs)をTelegramと接続するためのPythonライブラリです。Model Context Protocol(MCP)を使用して、AIエージェントがTelegram上でメッセージの送信、編集、削除、チャットの検索、ドラフトの管理、メディアのダウンロードなどを行うことを可能にします。Telethonを基盤にしており、MTProtoを利用しています。