Dixa MCP Server

Dixa MCP Server

ktabori

Developer Tools
Visit Server

README

Dixa MCP Server

This is a FastMCP server that provides tools for interacting with the Dixa API. It allows you to search conversations, get conversation details, manage tags, and more.

Running the Server

To run the server, you need to:

  1. Install dependencies:
npm install
npm install fastmcp
  1. Set up your environment variables:
cp .env.example .env

Then edit .env and add your Dixa API key:

DIXA_API_KEY=your_api_key_here
  1. Start the server:
# Test the addition server example using CLI:
npx fastmcp dev src/tools/index.ts

# Test the addition server example using MCP Inspector:
npx fastmcp inspect src/tools/index.ts

Setting up in Claude

To use this server with Claude:

  1. Turn on dev mode
  2. In Claude, go to Settings > Developer > Edit Config
  3. Add the following configuration
{
  "mcpServers": {
    "dixa-mcp-server": {
      "command": "npx",
      "args": [
        "tsx",
        "/PATH/TO/FOLDER/dixa-mcp-server/src/tools/index.ts"
      ],
      "env": {
        "DIXA_API_KEY": "YOUR_API_KEY_TO_DIXA"
      }
    }
  }
}

Server-Sent Events (SSE)

You can also run the server with SSE support:

server.start({
  transportType: "sse",
  sse: {
    endpoint: "/sse",
    port: 8080,
  },
});

This will start the server and listen for SSE connections on http://localhost:8080/sse.

You can then use SSEClientTransport to connect to the server:

import { SSEClientTransport } from "@modelcontextprotocol/sdk/client/sse.js";

const client = new Client(
  {
    name: "example-client",
    version: "1.0.0",
  },
  {
    capabilities: {},
  },
);

const transport = new SSEClientTransport(new URL(`http://localhost:8080/sse`));

await client.connect(transport);

Implemented Tools

Conversation Management

  • searchConversations: Search conversations in Dixa with pagination support
  • getConversation: Get a single conversation by ID
  • getConversationMessages: Get all messages for a specific conversation
  • getConversationTags: Get all tags associated with a conversation
  • getConversationNotes: Get all internal notes for a conversation
  • getConversationRatings: Get all ratings for a conversation

Tag Management

  • listTags: List all available tags in Dixa
  • tagConversation: Add a tag to a specific conversation
  • removeConversationTag: Remove a tag from a specific conversation

End User Management

  • getEndUser: Get information about a specific end user
  • getEndUserConversations: Get all conversations for a specific end user

Agent Management

  • getAgent: Get information about a specific agent
  • listAgents: List all agents with optional filtering

Analytics

  • getAnalyticsMetric: Get detailed information about a specific analytics metric
  • getAnalyticsRecord: Get detailed information about a specific analytics record
  • listAnalyticsRecords: List all available analytics record IDs
  • listAnalyticsMetrics: List all available analytics metric IDs
  • getAnalyticsFilter: Get possible values for a given analytics filter attribute
  • getAnalyticsRecordsData: Get analytics data for a specific record with filters and period settings
  • getAnalyticsMetricsData: Get analytics data for a specific metric with filters, period settings, and aggregations

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
MCP Package Docs Server

MCP Package Docs Server

Facilitates LLMs to efficiently access and fetch structured documentation for packages in Go, Python, and NPM, enhancing software development with multi-language support and performance optimization.

Featured
Local
TypeScript
Claude Code MCP

Claude Code MCP

An implementation of Claude Code as a Model Context Protocol server that enables using Claude's software engineering capabilities (code generation, editing, reviewing, and file operations) through the standardized MCP interface.

Featured
Local
JavaScript
@kazuph/mcp-taskmanager

@kazuph/mcp-taskmanager

Model Context Protocol server for Task Management. This allows Claude Desktop (or any MCP client) to manage and execute tasks in a queue-based system.

Featured
Local
JavaScript
Linear MCP Server

Linear MCP Server

Enables interaction with Linear's API for managing issues, teams, and projects programmatically through the Model Context Protocol.

Featured
JavaScript
mermaid-mcp-server

mermaid-mcp-server

A Model Context Protocol (MCP) server that converts Mermaid diagrams to PNG images.

Featured
JavaScript
Jira-Context-MCP

Jira-Context-MCP

MCP server to provide Jira Tickets information to AI coding agents like Cursor

Featured
TypeScript
Linear MCP Server

Linear MCP Server

A Model Context Protocol server that integrates with Linear's issue tracking system, allowing LLMs to create, update, search, and comment on Linear issues through natural language interactions.

Featured
JavaScript
Sequential Thinking MCP Server

Sequential Thinking MCP Server

This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.

Featured
Python