drio
Open app

Mcp Api

Source

mcp client and server

Catalog onlyCatalog onlySTDIO

Overview

Mcp Api is a client and server implementation of the Model Context Protocol (MCP), designed to facilitate communication between different models and applications.

To use Mcp Api, developers can integrate it into their applications by following the documentation provided on the GitHub repository. It allows for seamless interaction with various models.

  • Client and server architecture for flexible integration - Supports multiple model interactions - Easy-to-use API for developers
  1. Integrating machine learning models into applications.
  2. Facilitating communication between different AI models.
  3. Building applications that require model context management.

Add to your AI client

Use these steps to connect Mcp Api 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": {
    "mcp-api-isakulaksiz": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-api-isakulaksiz"
      ]
    }
  }
}

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": {
    "mcp-api-isakulaksiz": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-api-isakulaksiz"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-api-isakulaksiz": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-api-isakulaksiz"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-api-isakulaksiz": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-api-isakulaksiz"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-api-isakulaksiz": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-api-isakulaksiz"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-api-isakulaksiz": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-api-isakulaksiz"
      ]
    }
  }
}

FAQ

What programming language is Mcp Api written in?

Mcp Api is written in Python.

Is there any official documentation available?

Yes, the official documentation can be found on the GitHub repository.

Can I contribute to the Mcp Api project?

Yes, contributions are welcome! Please refer to the contribution guidelines on the GitHub page.