
PlainSignal MCP Server
Provides tools for retrieving analytics reports and metrics from PlainSignal through the Model Context Protocol (MCP).
README
PlainSignal MCP Server
This is a Model Context Protocol (MCP) server implementation for PlainSignal analytics data. It provides tools for retrieving analytics reports and metrics through the MCP protocol.
Setup
Installation
From npm (recommended)
# Install globally
npm install -g @plainsignal/plainsignal-mcp
# Or install locally in your project
npm install @plainsignal/plainsignal-mcp
From source
- Clone this repository
- Install dependencies:
npm install
This project uses ES modules instead of CommonJS. Make sure you're using a Node.js version that supports ES modules (Node.js 14+).
Usage
When installed from npm
# If installed globally
plainsignal-mcp --token <your_access_token>
# If installed locally
npx plainsignal-mcp --token <your_access_token>
# Or using an environment variable
export PLAINSIGNAL_TOKEN=<your_access_token>
plainsignal-mcp
When using from source
Run the server with your access token:
node src/index.js --token <your_access_token>
# Or using an environment variable
export PLAINSIGNAL_TOKEN=<your_access_token>
node src/index.js
You can also specify a custom API base URL:
node src/index.js --token <your_access_token> --api-base-url <api_base_url>
Or use the short format:
node src/index.js -t <your_access_token> -u <api_base_url>
Alternatively, set the access token and API base URL as environment variables and use the test script:
export PLAINSIGNAL_TOKEN=your_access_token
export API_BASE_URL=https://app.plainsignal.com/api/v1
./test.sh
By default, the server connects to https://app.plainsignal.com/api/v1
.
MCP Server configs
Claude Desktop
Add this snippet to your claude_desktop_config.json
:
{
"mcpServers": {
"plainsignal": {
"command": "npx -y @plainsignal/plainsignal-mcp",
"env": {
"PLAINSIGNAL_TOKEN": "<YOUR_PLAINSIGNAL_TOKEN>"
}
}
}
}
Available Tools
The server provides the following tools:
getReport
Retrieves an analytics report for a specified domain and time period.
Parameters:
organizationID
: Organization IDdomainID
: Domain IDperiodFrom
: Report start datetime in RFC3339 formatperiodTo
: Report end datetime in RFC3339 formatperiodSelection
: Period type (m: month, y: year, d: day)aggregationWindow
: Data aggregation window (h: hour, d: day)filters
: (Optional) List of filters as key-value pairs
getSubReport
Retrieves detailed metrics for a specific aspect of analytics data.
Parameters:
organizationID
: Organization IDdomainID
: Domain IDperiodFrom
: Report start datetime in RFC3339 formatperiodTo
: Report end datetime in RFC3339 formatperiodSelection
: Period type (m: month, y: year, d: day)aggregationWindow
: Data aggregation window (h: hour, d: day)subReportType
: Type of report (1: page, 2: entry page, etc.)filters
: (Optional) List of filters as key-values pairspagination
: (Optional) Pagination controls with limit and offset
API Reference
This server communicates with the PlainSignal API. By default, it connects to https://app.plainsignal.com/api/v1
, but you can configure the API endpoint in several ways:
-
Use the
--api-base-url
command line option:node src/index.js --token <your_token> --api-base-url https://app.plainsignal.com/api/v1
-
Set the
API_BASE_URL
environment variable:export API_BASE_URL=https://app.plainsignal.com/api/v1
-
Pass a custom API base URL to the constructor when instantiating the server programmatically:
const server = new PlainSignalStdioServer(token, 'https://app.plainsignal.com/api/v1');
For Developers
The server is implemented using the MCP SDK and communicates over STDIO.
Examples
An example client is provided to demonstrate how to use the MCP server:
# Set your access token
export PLAINSIGNAL_TOKEN=your_access_token
# Run the example client
npm run example
Or run the resources example client:
# Set your access token
export PLAINSIGNAL_TOKEN=your_access_token
# Run the resources example client
npm run resources-example
The example client demonstrates:
- Connecting to the MCP server
- Listing available tools
- Calling the
getReport
tool with sample parameters - Processing and displaying the results
The resources example client demonstrates:
- Connecting to the MCP server
- Listing available resources
- Reading the
listDomains
resource - Processing and displaying the results
License
This project is licensed under the MIT License - see the LICENSE file for details.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.