arize-tracing-assistant


Namearize-tracing-assistant JSON
Version 0.2.0 PyPI version JSON
download
home_pageNone
SummaryArize tracing assistant
upload_time2025-07-09 16:48:35
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
licenseNone
keywords explainability monitoring observability tracing
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
<p align="left">
    <a target="_blank" href="https://arize.com" style="background:none">
        <img alt="arize banner" src="https://storage.googleapis.com/arize-assets/arize-logo-white.jpg"  width="300"></img>
</p>

# Arize Tracing Assistant
<a target="_blank" href="https://github.com/Arize-ai/arize/blob/main/sdk/python/arize-tracing-assistant/LICENSE">
    <img src="https://img.shields.io/pypi/l/arize-otel">
</a>
<img src="https://badge.mcpx.dev?status=on" title="MCP Enabled"/>
<a href="https://cursor.com/install-mcp?name=arize-tracing-assistant&config=eyJjb21tYW5kIjogInV2eCBhcml6ZS10cmFjaW5nLWFzc2lzdGFudEBsYXRlc3QifQ=="><img src="https://cursor.com/deeplink/mcp-install-dark.svg" alt="Add Arize tracing assistant MCP server to Cursor" height=20 /></a>
    
An MCP server that provides with docs and support to instrument your AI application with Arize AX.

## Overview

This MCP server provides your LLM with docs and examples to instrument your AI apps with Arize AX. It also provides access to Arize support.
Connect it to your IDE or LLM and get curated tracing examples, setup guides and best practices!


## Installation

### Install uv

Make sure **uv** (the fast Python package manager) is installed on your system. Installation instructions: [uv installation guide](https://docs.astral.sh/uv/getting-started/installation/#standalone-installer).

- On macOS:
  ```bash
  pip install uv
  ```
  or

  ```bash
  brew install uv
  ```

- On Linux:
  ```bash
  curl -LsSf https://astral.sh/uv/install.sh | less
  ```
- On Windows:
  ```powershell
  powershell -c "irm https://astral.sh/uv/install.ps1 | more"
  ```

### IDE integration

#### Cursor

[![Install MCP Server](https://cursor.com/deeplink/mcp-install-dark.svg)](https://cursor.com/install-mcp?name=arize-tracing-assistant&config=eyJjb21tYW5kIjogInV2eCBhcml6ZS10cmFjaW5nLWFzc2lzdGFudEBsYXRlc3QifQ==)

1. Go to Cursor Settings > MCP.
2. Click "Add new global MCP server" and add the server to your config JSON.
3. Remove the `env` section if you don't have access to RunLLM.

Example config:

```json
"arize-tracing-assistant": {
  "command": "uvx",
  "args": [
    "arize-tracing-assistant@latest"
  ]
}
```

---

#### Claude Desktop

1. Go to Claude Desktop Settings.
2. In Developer > Edit Config and add this to your config JSON:

```json
"arize-tracing-assistant": {
  "command": "/Users/myuser/miniconda3/bin/uvx",
  "args": [
   "arize-tracing-assistant@latest"
  ]
}
```

---

#### Manual MCP config

Add the following snippet to your MCP config file:

```json
  "mcpServers": {
    "arize-tracing-assistant": {
      "command": "uvx",
      "args": [
      "arize-tracing-assistant@latest"
    ]
    }
  }
```

## Usage

Once the MCP server is running, ask your IDE/LLM questions about tracing or general Arize support like...

- Instrument this app using Arize
- Can you use manual instrumentation so that I have more control over my traces?
- How can I redact sensitive information from my spans?
- Use decorators to have more control over the span attributes
- Can you make sure the context of this trace is propagated across these tool calls?
- Where can I find my Arize keys?

## Troubleshooting

- Make sure the JSON configs are perfectly formatted.
- Clear the **uv** cache with `uv cache clean` to force accessing the latest version.
- Make sure your `uv` command is pointing to the right location by running `which uv`, or simply use the full path.
- The server should start in the terminal just by running:

  ```bash
  uvx arize-tracing-assistant@latest
  ```

- Use the Anthropic MCP inspector by running:
  ```bash
  npx @modelcontextprotocol/inspector uvx arize-tracing-assistant@latest
  ```

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "arize-tracing-assistant",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": "Arize AI <support@arize.com>",
    "keywords": "Explainability, Monitoring, Observability, Tracing",
    "author": null,
    "author_email": "Arize AI <support@arize.com>",
    "download_url": "https://files.pythonhosted.org/packages/e4/15/97e202554333635f1e7d0a864d21c423e4a1016b54d3d23569bc0a082098/arize_tracing_assistant-0.2.0.tar.gz",
    "platform": null,
    "description": "\n<p align=\"left\">\n    <a target=\"_blank\" href=\"https://arize.com\" style=\"background:none\">\n        <img alt=\"arize banner\" src=\"https://storage.googleapis.com/arize-assets/arize-logo-white.jpg\"  width=\"300\"></img>\n</p>\n\n# Arize Tracing Assistant\n<a target=\"_blank\" href=\"https://github.com/Arize-ai/arize/blob/main/sdk/python/arize-tracing-assistant/LICENSE\">\n    <img src=\"https://img.shields.io/pypi/l/arize-otel\">\n</a>\n<img src=\"https://badge.mcpx.dev?status=on\" title=\"MCP Enabled\"/>\n<a href=\"https://cursor.com/install-mcp?name=arize-tracing-assistant&config=eyJjb21tYW5kIjogInV2eCBhcml6ZS10cmFjaW5nLWFzc2lzdGFudEBsYXRlc3QifQ==\"><img src=\"https://cursor.com/deeplink/mcp-install-dark.svg\" alt=\"Add Arize tracing assistant MCP server to Cursor\" height=20 /></a>\n    \nAn MCP server that provides with docs and support to instrument your AI application with Arize AX.\n\n## Overview\n\nThis MCP server provides your LLM with docs and examples to instrument your AI apps with Arize AX. It also provides access to Arize support.\nConnect it to your IDE or LLM and get curated tracing examples, setup guides and best practices!\n\n\n## Installation\n\n### Install uv\n\nMake sure **uv** (the fast Python package manager) is installed on your system. Installation instructions: [uv installation guide](https://docs.astral.sh/uv/getting-started/installation/#standalone-installer).\n\n- On macOS:\n  ```bash\n  pip install uv\n  ```\n  or\n\n  ```bash\n  brew install uv\n  ```\n\n- On Linux:\n  ```bash\n  curl -LsSf https://astral.sh/uv/install.sh | less\n  ```\n- On Windows:\n  ```powershell\n  powershell -c \"irm https://astral.sh/uv/install.ps1 | more\"\n  ```\n\n### IDE integration\n\n#### Cursor\n\n[![Install MCP Server](https://cursor.com/deeplink/mcp-install-dark.svg)](https://cursor.com/install-mcp?name=arize-tracing-assistant&config=eyJjb21tYW5kIjogInV2eCBhcml6ZS10cmFjaW5nLWFzc2lzdGFudEBsYXRlc3QifQ==)\n\n1. Go to Cursor Settings > MCP.\n2. Click \"Add new global MCP server\" and add the server to your config JSON.\n3. Remove the `env` section if you don't have access to RunLLM.\n\nExample config:\n\n```json\n\"arize-tracing-assistant\": {\n  \"command\": \"uvx\",\n  \"args\": [\n    \"arize-tracing-assistant@latest\"\n  ]\n}\n```\n\n---\n\n#### Claude Desktop\n\n1. Go to Claude Desktop Settings.\n2. In Developer > Edit Config and add this to your config JSON:\n\n```json\n\"arize-tracing-assistant\": {\n  \"command\": \"/Users/myuser/miniconda3/bin/uvx\",\n  \"args\": [\n   \"arize-tracing-assistant@latest\"\n  ]\n}\n```\n\n---\n\n#### Manual MCP config\n\nAdd the following snippet to your MCP config file:\n\n```json\n  \"mcpServers\": {\n    \"arize-tracing-assistant\": {\n      \"command\": \"uvx\",\n      \"args\": [\n      \"arize-tracing-assistant@latest\"\n    ]\n    }\n  }\n```\n\n## Usage\n\nOnce the MCP server is running, ask your IDE/LLM questions about tracing or general Arize support like...\n\n- Instrument this app using Arize\n- Can you use manual instrumentation so that I have more control over my traces?\n- How can I redact sensitive information from my spans?\n- Use decorators to have more control over the span attributes\n- Can you make sure the context of this trace is propagated across these tool calls?\n- Where can I find my Arize keys?\n\n## Troubleshooting\n\n- Make sure the JSON configs are perfectly formatted.\n- Clear the **uv** cache with `uv cache clean` to force accessing the latest version.\n- Make sure your `uv` command is pointing to the right location by running `which uv`, or simply use the full path.\n- The server should start in the terminal just by running:\n\n  ```bash\n  uvx arize-tracing-assistant@latest\n  ```\n\n- Use the Anthropic MCP inspector by running:\n  ```bash\n  npx @modelcontextprotocol/inspector uvx arize-tracing-assistant@latest\n  ```\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Arize tracing assistant",
    "version": "0.2.0",
    "project_urls": {
        "Documentation": "https://arize.com/docs/ax/observe/quickstart-llm"
    },
    "split_keywords": [
        "explainability",
        " monitoring",
        " observability",
        " tracing"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d3fc0b909e20e191a7ab9ba9411fcc5d0e9add00d2beeeb3a9848da6f0a5a8fb",
                "md5": "28dfc3b27e2375235fc8ef65e15c62c9",
                "sha256": "b151dd98cb066fab159a130971fabb5872dffc3c78a8e85646f055eac344341d"
            },
            "downloads": -1,
            "filename": "arize_tracing_assistant-0.2.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "28dfc3b27e2375235fc8ef65e15c62c9",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 90310,
            "upload_time": "2025-07-09T16:48:34",
            "upload_time_iso_8601": "2025-07-09T16:48:34.514032Z",
            "url": "https://files.pythonhosted.org/packages/d3/fc/0b909e20e191a7ab9ba9411fcc5d0e9add00d2beeeb3a9848da6f0a5a8fb/arize_tracing_assistant-0.2.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e41597e202554333635f1e7d0a864d21c423e4a1016b54d3d23569bc0a082098",
                "md5": "fd0ffbb5ed8b455a41ed1212362100d2",
                "sha256": "320a6eb0d6337f6de64e097ee011c29c346df49e4f7b54ebc5c92d563016c302"
            },
            "downloads": -1,
            "filename": "arize_tracing_assistant-0.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "fd0ffbb5ed8b455a41ed1212362100d2",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 52114,
            "upload_time": "2025-07-09T16:48:35",
            "upload_time_iso_8601": "2025-07-09T16:48:35.903724Z",
            "url": "https://files.pythonhosted.org/packages/e4/15/97e202554333635f1e7d0a864d21c423e4a1016b54d3d23569bc0a082098/arize_tracing_assistant-0.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-09 16:48:35",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "arize-tracing-assistant"
}
        
Elapsed time: 1.11559s