home / mcp / sector mcp server

Sector MCP Server

Provides a remote MCP server on Cloudflare Workers for tool execution via MCP clients.

Installation
Add the following to your MCP client configuration file.

Configuration

View docs
{
  "mcpServers": {
    "aidityasadhakim-sector-mcp": {
      "url": "https://remote-mcp-server-authless.<your-account>.workers.dev/sse"
    }
  }
}

You can deploy a remote MCP server that runs on Cloudflare Workers and expose its tools to MCP clients. This setup lets you run tools remotely, connect from playground clients or local MCP clients, and extend the server by defining your own tools in code. It’s useful for experimenting with remote execution, rapid iteration, and sharing tooling across projects without running a local MCP instance.

How to use

Connect to your remote MCP server from an MCP client to start using your tools. You can access the server via its published URL and then invoke tools through the client as if they were local.

How to install

Prerequisites you need before installing: Node.js and npm, or a compatible runtime that can run MCP tooling. You will also need access to the remote MCP server URL you intend to use.

Additional configuration and usage notes

Deploy and customize your remote MCP server by choosing a hosting target and configuring how tools are loaded. The remote endpoint is reachable at the designated URL and you can wire up clients to communicate with it. You can also connect local MCP clients via a proxy if needed and point them at your remote server using the provided URL.

Sector MCP Server - aidityasadhakim/sector-mcp