drio
Open app

gameanalytics-server MCP Server

Source

GameAnalytics MCP server for Model Context Protocol integration

Catalog onlyCatalog onlySTDIO

Overview

GameAnalytics MCP Server is a TypeScript-based server that implements the Model Context Protocol (MCP) for managing a simple notes system, allowing users to create, access, and summarize notes.

To use the GameAnalytics MCP Server, install the necessary dependencies, build the server, and configure it with your application. You can create notes and generate summaries through the provided tools and prompts.

  • Resources for managing text notes with URIs and metadata. - Tools for creating new notes with required parameters. - Prompts for generating summaries of all stored notes.
  1. Managing and organizing notes for projects.
  2. Summarizing large sets of notes for quick reference.
  3. Integrating with applications that require note-taking capabilities.

Add to your AI client

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

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

Claude Code

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

.mcp.json (project root)

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

VS Code (Copilot)

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

.vscode/mcp.json

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What programming language is used for the server?

The server is built using TypeScript.

How do I install the server?

You can install it by running `npm install` after cloning the repository.

Can I use this server with other applications?

Yes, it can be integrated with applications that support the Model Context Protocol.