Random

test mcp server
  • typescript

0

GitHub Stars

typescript

Language

4 months ago

First Indexed

3 weeks ago

Catalog Refreshed

Documentation & install

Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.

Installation

Add the following to your MCP client configuration file.

Configuration

View docs
{
  "mcpServers": {
    "kanwardeep007-random-mcp-server": {
      "command": "npx",
      "args": [
        "mcp",
        "start",
        "--api-key",
        "...",
        "--api-secret",
        "...",
        "--oauth2",
        "...",
        "--cloud-name",
        "..."
      ],
      "env": {
        "MCP_API_KEY": "YOUR_API_KEY",
        "MCP_API_SECRET": "YOUR_API_SECRET"
      }
    }
  }
}

You run an MCP Server to connect MCP clients to your services, enabling structured interactions with the Model Context Protocol API. This guide shows practical steps to run the server locally or remotely, how to start it with your credentials, and how to integrate it with clients that rely on MCP for machine-context tasks.

How to use

To use the MCP Server, configure a client to connect through the supported runtime method, then start the server with your credentials. You can run the server either via a remote HTTP endpoint or as a local process. When started, the server exposes endpoints and commands that MCP clients can invoke to perform actions, fetch data sources, and manage context for conversations.

How to install

Prerequisites you need before starting: Node.js and npm installed on your machine.

Option A: Run using a remote MCP URL (recommended for quick setup)

  1. Prepare the runtime for the MCP server as a standard Node.js-based process.

  2. Use the provided MCP start command to connect to the remote server with your credentials.

Example usage (inline description): run the MCP server with your credentials to start the remote MCP server client-side integration.

{
  "mcpServers": {
    "sdk": {
      "command": "npx",
      "args": [
        "mcp",
        "start",
        "--api-key",
        "...",
        "--api-secret",
        "...",
        "--oauth2",
        "...",
        "--cloud-name",
        "..."
      ]
    }
  }
}

Option B: Run locally from a clone of the project

If you prefer to run the MCP Server locally, clone the project, install dependencies, build, and start the server with your credentials.

Steps you follow exactly as executed in your environment:

git clone <repository-url>
cd <cloned-directory>
npm install
npm run build
node ./bin/mcp-server.js start --api-key <YOUR_API_KEY> --api-secret <YOUR_API_SECRET> --oauth2 <YOUR_OAUTH2> --cloud-name <YOUR_CLOUD_NAME>

Note on local development with a client

To use this local version with MCP clients, include the following configuration in your client setup.

{
  "mcpServers": {
    "sdk_local": {
      "command": "node",
      "args": [
        "./bin/mcp-server.js",
        "start",
        "--api-key",
        "...",
        "--api-secret",
        "...",
        "--oauth2",
        "...",
        "--cloud-name",
        "..."
      ]
    }
  }
}

Available tools

start

Start the MCP server with provided credentials to begin handling MCP client requests.

inspector

Use the MCP Inspector to debug and inspect the running MCP server instance.

build

Build the MCP server bundle when running from source to generate the executable assets.

Built by
VeilStrat
AI signals for GTM teams
© 2026 VeilStrat. All rights reserved.All systems operational