N

Neptune

Query Neptune.ai experiments and metadata.

·No reviews yet
Repo
Share:

About

Auto-generated

Neptune is a Model Context Protocol server in the Analytics & Monitoring category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Neptune.

What does the Neptune MCP do?
The Neptune MCP allows you to query Neptune.ai experiments and retrieve associated metadata for analytics and monitoring. It integrates Neptune.ai functionalities into your MCP client for streamlined MLOps workflows.
How do I install the Neptune MCP in a client application?
Installation typically involves adding the 'neptune' slug to your MCP client's configuration. Specific steps vary by client; refer to your client's documentation for detailed instructions on adding community-provided MCPs.
Does the Neptune MCP require an API key?
Yes, the Neptune MCP uses an API key for authentication. You will need to provide a valid API key to connect to Neptune.ai and access its services through this MCP.
What kind of data can I access with the Neptune MCP?
You can access Neptune.ai experiment data and related metadata. This includes information about runs, models, datasets, and other artifacts tracked within your Neptune.ai projects.
Is there a cost associated with using the Neptune MCP?
The Neptune MCP itself is community-provided and open-source. However, using the Neptune.ai service may incur costs depending on your Neptune.ai subscription plan.
What is a common limitation of the Neptune MCP?
The Neptune MCP’s capabilities are limited to querying existing experiments and metadata. It does not provide functionality for directly logging new experiments or modifying data within Neptune.ai.

Install Neptune

Claude Desktop

Add this to claude_desktop_config.json.

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

Cursor

Add this to ~/.cursor/mcp.json.

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

VS Code

Add this to your workspace settings.json.

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

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.