Overview
The mkinf SDK is a powerful toolkit designed to facilitate the integration of MCP servers into applications, providing access to a wide range of specialized AI capabilities through a unified interface.
To use the mkinf SDK, follow these steps:
- Create a free account at hub.mkinf.io/signup.
- Configure your API key in the API Keys settings.
- Install the SDK using pip.
- Browse available AI Agents on the mkinf hub and select one that fits your needs.
- Import the agent into your code as per the documentation.
- Easy integration with MCP servers. - Access to a variety of AI capabilities. - Simple installation and setup process. - Compatibility with LangChain chains and graphs.
- Integrating AI functionalities into web applications.
- Automating data scraping tasks using AI agents.
- Developing AI-driven applications with minimal setup.
Add to your AI client
Use these steps to connect mkinf SDK in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mkinf-mkinf-io": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mkinf-mkinf-io"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mkinf-mkinf-io": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mkinf-mkinf-io"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mkinf-mkinf-io": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mkinf-mkinf-io"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mkinf-mkinf-io": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mkinf-mkinf-io"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mkinf-mkinf-io": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mkinf-mkinf-io"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mkinf-mkinf-io": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mkinf-mkinf-io"
]
}
}
}FAQ
Is mkinf SDK free to use?
Yes! During the beta period, all accounts receive unlimited free credits.
What programming language is mkinf SDK built with?
The mkinf SDK is built with Python.
Are there any current limitations?
Yes, currently mkinf tools are compatible with LangChain chains and graphs, with support for other frameworks coming soon.