DEV Community

Daniel Ioni
Daniel Ioni

Posted on

MCP Server Updates: 12+ Endpoints, 5 New Bounties, and Enhanced Monitoring

MCP Server Updates: 12+ Endpoints, 5 New Bounties, and Enhanced Monitoring

In just one day, we've expanded our MCP Server with 5 new bounties, 12+ endpoints, and full Sentry monitoring. Here's what's new.


πŸ“Š Quick Stats

Metric Value
New Endpoints 12+
New Bounties 5 (1,800 MYZ)
Total Bounties 40+
Total MYZ Distributed 9,725+
New Routes 5 files
Monitoring Sentry integrated

πŸ†• What's New

1. IoT Sensors Integration 🌱

Now you can monitor urban gardens with IoT sensors.


bash
# Get all sensors
curl https://api.myzubster.com/api/sensors/garden-1

# Response
{
  "temperature": 22.5,
  "humidity": 65,
  "pH": 6.8,
  "light": 750,
  "timestamp": "2026-08-09T05:33:56.754Z"
}

2. Fiat Payments πŸ’΅

Support for USD, EUR, and GBP payments.
bash

# Create a payment
curl -X POST https://api.myzubster.com/api/payments/fiat/create \
  -H "Content-Type: application/json" \
  -d '{"amount": 100, "currency": "USD", "userId": "user-123"}'

# Response
{
  "paymentId": "1234567890",
  "status": "pending",
  "amount": 100,
  "currency": "USD"
}

3. Multi-Currency Crypto πŸͺ™

Real-time rates and swaps for BTC, ETH, ADA.
bash

# Get rates
curl https://api.myzubster.com/api/crypto/rates

# Response
{
  "rates": {
    "BTC": 45000,
    "ETH": 3000,
    "ADA": 0.45,
    "MYZ": 1.0,
    "XMR": 150
  }
}

# Swap crypto
curl -X POST https://api.myzubster.com/api/crypto/swap \
  -d '{"from": "MYZ", "to": "BTC", "amount": 1000}'

4. EVA IONI Arm Prototype 🦾

Control the robotic arm with precision.
bash

# Move arm
curl -X POST https://api.myzubster.com/api/arm/move \
  -d '{"x": 10, "y": 20, "z": 30}'

# Get status
curl https://api.myzubster.com/api/arm/status

# Response
{
  "position": { "x": 10, "y": 20, "z": 30 },
  "grip": "open",
  "status": "idle"
}

5. Mobile App Endpoints πŸ“±

Ready for iOS and Android apps.
bash

# Get app config
curl https://api.myzubster.com/api/mobile/config

# Response
{
  "appVersion": "1.0.0",
  "apiVersion": "1.0.0",
  "features": ["wallet", "robot", "sensors", "payments", "notifications"],
  "maintenance": false
}

πŸ” Sentry Monitoring

All endpoints are now monitored with Sentry.
javascript

// Every request is traced
app.use(Sentry.Handlers.requestHandler());

// Errors are captured
app.get("/api/arm/move", (req, res) => {
  try {
    // Movement logic
  } catch (error) {
    Sentry.captureException(error);
    res.status(500).json({ error: error.message });
  }
});

// Test error endpoint
curl https://api.myzubster.com/api/test-error

πŸ“Š Architecture Update
text

                    AGENTE DI AI
                        β”‚
                        β–Ό
                      MCP
                        β”‚
                        β–Ό
              GATEWAY DI MYZUBSTER
                   ↙  β”‚  β†˜
              β”Œβ”€β”€β”€β”€β” β”Œβ”€β”€β”€β”€β” β”Œβ”€β”€β”€β”€β”
              β”‚    β”‚ β”‚    β”‚ β”‚    β”‚
           PORTAFOGLIO  ROBOT   IoT
              β”‚    β”‚ β”‚    β”‚ β”‚    β”‚
              β””β”€β”€β”€β”€β”˜ β””β”€β”€β”€β”€β”˜ β””β”€β”€β”€β”€β”˜
                β”‚      β”‚      β”‚
                β–Ό      β–Ό      β–Ό
          PAGAMENTI  MISSIONI  SENSIORI
                β”‚      β”‚      β”‚
                β””β”€β”€β”€β”€β”€β”€β”Όβ”€β”€β”€β”€β”€β”€β”˜
                       β”‚
                       β–Ό
                   ANALISI
                       β”‚
                       β–Ό
                  MONDO REALE

βœ… Bounties Completed
Bounty  Description Reward
#1049   IoT Sensors 250 MYZ
#1050   Fiat Payments   300 MYZ
#1051   Multi-Currency Crypto   350 MYZ
#1052   EVA IONI Arm    400 MYZ
#1053   Mobile App  500 MYZ

Total: 1,800 MYZ πŸš€
πŸ”— Live API

All endpoints are live and accessible:
bash

# Health check
curl https://api.myzubster.com/api/health

# IoT Sensors
curl https://api.myzubster.com/api/sensors/garden-1

# Crypto Rates
curl https://api.myzubster.com/api/crypto/rates

# Arm Status
curl https://api.myzubster.com/api/arm/status

# Mobile Config
curl https://api.myzubster.com/api/mobile/config

πŸš€ What's Next
Feature Status  ETA
WebSocket for real-time updates πŸ“… Planned    2026-08
Machine Learning for robot  πŸ“… Planned    2026-09
Smart Contracts on Tari πŸ“… Planned    2026-09
AI agent marketplace    πŸ“… Planned    2026-10
🀝 Contribute

We're building the infrastructure for AI agents to interact with the real world. Join us!

    Explore issues: GitHub

    Claim bounties: 50-900 MYZ

    Build the future: AI + Robotics + IoT

πŸ”— Links

    🌐 Live API: api.myzubster.com

    πŸ™ GitHub: MyZubster-Ecosystem

    πŸ“– Docs: docs.myzubster.com

    πŸ’¬ Discord: discord.gg/myzubster

The MCP Server is growing. New endpoints, new bounties, new possibilities. Join us in building the future of AI-agent infrastructure. πŸš€

#MCP #Server #Updates #MyZubster #IoT #Payments #Crypto #Robotics

Enter fullscreen mode Exit fullscreen mode

Top comments (0)