Acceleronix OpenAPI Swagger MCP Server

Acceleronix OpenAPI Swagger MCP Server

Provides seamless access to 32 Acceleronix PaaS OpenAPIs for device management, data storage, and more, with intelligent tool management and Bearer token authentication.

Category
Visit Server

README

Acceleronix OpenAPI Swagger Doc MCP Server

A comprehensive Model Context Protocol (MCP) server that provides seamless access to 32 OpenAPIs from the Acceleronix Developer Center. Built on Cloudflare Workers with intelligent tool management and Bearer token authentication.

Features

  • 32 Acceleronix PaaS OpenAPIs: Comprehensive coverage of device management, data storage, family services, and more
  • Smart Tool Management: Intelligent load balancing with 3-8 tools per API (~100 tools total)
  • Multi-Tier Architecture: EndUser, Enterprise, and Open API access levels
  • Bearer Token Auth: Unified authentication across all APIs
  • Real-time Access: Deployed on Cloudflare Workers for global low-latency access
  • Claude Integration: Direct integration with Claude Desktop and AI Playground

Supported API Categories

Core Device Management (18 Enabled APIs)

  • Device Manager (Enterprise) - Device lifecycle and configuration management
  • Device Shadow (Enterprise) - Device state synchronization and shadow operations
  • Binding Service (EndUser/Enterprise) - Device binding and user association
  • DeviceGroup Service (EndUser) - Group management and batch operations

Platform Services

  • App Service (EndUser) - Application management and deployment
  • Family Service (EndUser) - Multi-user family account management
  • EndUser Service (EndUser) - User profile and account operations
  • Product Management (Enterprise) - Product catalog and lifecycle

Data & Analytics

  • Data Storage (EndUser) - Time-series data storage and retrieval
  • Weather Service (EndUser) - Weather data integration
  • Rule Engine (EndUser) - Event processing and automation rules
  • Category Management (EndUser) - Device categorization and taxonomy

Infrastructure Services

  • OTA Service (EndUser) - Over-the-air firmware updates
  • Thing Specification Language (Enterprise) - Device model definitions
  • Matter Service (EndUser) - Matter protocol integration
  • I18n Service (EndUser) - Internationalization and localization
  • Global Bootstrap (Open) - Platform initialization services

Additional APIs (14 Available, Currently Disabled)

  • Mail Service, Mobile Push, OEM App, Portal Service, Work Order, SMS, Streaming Media, and more

Quick Start

Deploy to Cloudflare Workers

# Clone the repository
git clone <repository-url>
cd swagger-mcp-server

# Install dependencies
npm install

# Deploy to Cloudflare Workers
npm run deploy

Your MCP server will be available at: https://swagger-mcp-server.<your-account>.workers.dev/sse

Local Development

# Start local development server
npm run dev

# Server available at: http://localhost:8787/sse

Configuration

Bearer Token Setup

Update the authentication tokens in src/config.ts:

{
  name: "device_mgr_enterprise",
  title: "IoT Device Manager (Enterprise)",
  auth: { type: 'bearer', token: 'your-bearer-token-here' },
  enabled: true,
  maxTools: 8
}

Enable/Disable APIs

Control which APIs are active by modifying the enabled flag:

{
  "name": "mail_enduser",
  "title": "Mail Service (EndUser)",
  "enabled": false,  // Set to true to enable
  "maxTools": 4
}

Claude Desktop Integration

Add to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "iot-apis": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://swagger-mcp-server.your-account.workers.dev/sse"
      ]
    }
  }
}

Available Tools

The server automatically generates tools from Swagger specifications with intelligent naming:

  • device_mgr_enterprise_getDevices - List all devices
  • binding_enduser_bindDevice - Bind device to user
  • deviceshadow_enterprise_updateShadow - Update device shadow
  • weather_enduser_getCurrentWeather - Get current weather data
  • And ~96 more tools across all enabled APIs

Management Tools

List Available APIs

# Using Claude
"List all available APIs and their status"

Test Connection

# Using Claude  
"Test the MCP server connection"

Architecture

Claude Desktop/AI Playground
           ↓
    MCP JSON-RPC 2.0
           ↓
   Cloudflare Workers
           ↓
    McpAgent (Durable Objects)
           ↓
   Multi-API Tool Router
           ↓
    32 IoT APIs (Acceleronix)

Tool Distribution Strategy

  • High Priority APIs: 6-8 tools each (Device Management, Product, TSL)
  • Medium Priority APIs: 4-6 tools each (Binding, Shadow, Data Storage)
  • Utility APIs: 3-4 tools each (Weather, I18n, Bootstrap)
  • Total: ~100 tools across 18 enabled APIs

Security Features

  • Bearer token authentication for all API calls
  • Environment variable support for sensitive tokens
  • CORS-enabled for browser clients
  • Request validation and error handling

Endpoints

  • MCP SSE: /sse - Server-Sent Events endpoint for Claude
  • Health Check: /health - Service status and version info
  • MCP JSON-RPC: /mcp - Direct JSON-RPC 2.0 endpoint

API Documentation

Each API provides comprehensive Swagger documentation accessible through the tools. Use the list_apis tool to see all available APIs and their descriptions.

Contributing

  1. Fork the repository
  2. Add new APIs to src/config.ts
  3. Test locally with npm run dev
  4. Deploy and test with Claude Desktop
  5. Submit a pull request

License

MIT License - see LICENSE file for details

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
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Exa Search

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.

Official
Featured