drio
Open app

TypeScript MCP Server

Source

Catalog onlyCatalog onlySTDIO

Overview

TypeScript MCP Server is a server designed for managing Model Context Protocol (MCP) providers, facilitating the integration and management of various models in a structured manner.

To use the TypeScript MCP Server, clone the repository from GitHub, install the necessary dependencies, and run the server using the provided commands in the documentation.

  • Management of multiple MCP providers - Easy integration with existing applications - Built with TypeScript for type safety and maintainability
  1. Integrating various machine learning models into a single application.
  2. Managing the lifecycle of model contexts in a microservices architecture.
  3. Facilitating communication between different model providers.

Add to your AI client

Use these steps to connect TypeScript MCP Server 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-server-upstreetai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-upstreetai"
      ]
    }
  }
}

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

Claude Code

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

.mcp.json (project root)

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

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What is MCP?

MCP stands for Model Context Protocol, which is a protocol for managing and integrating machine learning models.

Is the TypeScript MCP Server open source?

Yes! The TypeScript MCP Server is open source and available on GitHub.

What programming language is used?

The server is built using TypeScript.