Nullplatform API MCP

Nullplatform API MCP

Official
nullplatform

Interact with Nullplatform's cloud infrastructure API using natural language to manage deployments, services, and resources without writing API calls directly.

Enables interaction with Nullplatform's API endpoints for managing deployments, scopes, services, and other cloud resources through natural language using the official OpenAPI specification.

1106 views2Local (stdio)

What it does

  • Manage cloud deployments and services
  • Query deployment status and logs
  • Configure application scopes and environments
  • Monitor resource usage and metrics
  • Update service configurations
  • Access infrastructure analytics

Best for

DevOps teams managing Nullplatform infrastructureDevelopers deploying and monitoring applicationsInfrastructure automation and ChatOps workflows
Official OpenAPI specificationNatural language interface

About Nullplatform API MCP

Nullplatform API MCP is an official MCP server published by nullplatform that provides AI assistants with tools and capabilities via the Model Context Protocol. Nullplatform API MCP — manage deployments, scopes, services and other cloud resources via natural language with OpenAPI It is categorized under developer tools.

How to install

You can install Nullplatform API MCP in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.

License

Nullplatform API MCP is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.

Nullplatform API MCP

This project exposes the Nullplatform OpenAPI an MCP so that large language models (LLMs) can discover, understand, and interact with the nullplatform's API endpoints.

It uses the official OpenAPI spec from https://docs.nullplatform.com/ and automatically registers each endpoint as a function that the LLM can invoke.

✨ What It Does

  • Loads the Nullplatform OpenAPI spec.
  • Registers all available endpoints (GET, POST, etc.) as discoverable callable functions.
  • This mcp uses as base software @nullplatform/meta-mcp-proxy which allows you to do an in-place RAG for scenarios where you have a big amount of tools
  • Exposes those functions via MCP so the LLM can:
    • List, get, create, and modify deployments, scopes, services, and more.
    • Understand required parameters and request bodies.
    • Follow usage guidance like retrieving the nrn before modifying resources.

🧱 Installation

Using npx

Edit your file ~/Library/Application Support/Claude/claude_desktop_config.json and add:

{
  "mcpServers": {
    "mcp-openapi-proxy": {
      "command": "npx",
      "args": ["@nullplatform/mcp-api"],
      "env": {
        "NP_API_KEY": "<your apikey>"
      }
    }
  }
}

🐳 Using Docker

Build the image:

docker build -t nullplatform-mcp-api .

Configure Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "mcp-openapi-proxy": {
      "command": "docker",
      "args": ["run", "--rm", "-i", "-e", "NP_API_KEY", "nullplatform-mcp-api"],
      "env": {
        "NP_API_KEY": "<your apikey>"
      }
    }
  }
}

Or for Claude Code CLI (.mcp.json in your project):

{
  "mcpServers": {
    "mcp-openapi-proxy": {
      "command": "docker",
      "args": ["run", "--rm", "-i", "-e", "NP_API_KEY", "nullplatform-mcp-api"],
      "env": {
        "NP_API_KEY": "<your apikey>"
      }
    }
  }
}

Alternatives

Related Skills

Browse all skills
api-documenter

Master API documentation with OpenAPI 3.1, AI-powered tools, and modern developer experience practices. Create interactive docs, generate SDKs, and build comprehensive developer portals. Use PROACTIVELY for API documentation or developer portal creation.

4
openai-knowledge

Use when working with the OpenAI API (Responses API) or OpenAI platform features (tools, streaming, Realtime API, auth, models, rate limits, MCP) and you need authoritative, up-to-date documentation (schemas, examples, limits, edge cases). Prefer the OpenAI Developer Documentation MCP server tools when available; otherwise guide the user to enable `openaiDeveloperDocs`.

4
ccxt-typescript

CCXT cryptocurrency exchange library for TypeScript and JavaScript developers (Node.js and browser). Covers both REST API (standard) and WebSocket API (real-time). Helps install CCXT, connect to exchanges, fetch market data, place orders, stream live tickers/orderbooks, handle authentication, and manage errors. Use when working with crypto exchanges in TypeScript/JavaScript projects, trading bots, arbitrage systems, or portfolio management tools. Includes both REST and WebSocket examples.

1
dotnet-backend

.NET/C# backend developer for ASP.NET Core APIs with Entity Framework Core. Builds REST APIs, minimal APIs, gRPC services, authentication with Identity/JWT, authorization, database operations, background services, SignalR real-time features. Activates for: .NET, C#, ASP.NET Core, Entity Framework Core, EF Core, .NET Core, minimal API, Web API, gRPC, authentication .NET, Identity, JWT .NET, authorization, LINQ, async/await C#, background service, IHostedService, SignalR, SQL Server, PostgreSQL .NET, dependency injection, middleware .NET.

109
mcp-builder

Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).

103
api-design-principles

Master REST and GraphQL API design principles to build intuitive, scalable, and maintainable APIs that delight developers. Use when designing new APIs, reviewing API specifications, or establishing API design standards.

55