CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Plutocalcdesigner Mcp

danpeig/plutocalcdesigner-mcp
1registry active
Summary

Connects Claude to the Plutocalc Designer REST API for sizing water and wastewater treatment systems. You get 15 tools covering the full engineering workflow: list available treatment models (activated sludge, stripping towers, biological systems), fetch calculation templates with required parameters, retrieve reference databases and unit conversions, run computations, and convert between JSON and Markdown formats for easier reading. Includes license credit checks and direct links to model manuals. Useful when you need to design treatment plants through conversation rather than clicking through engineering software. The MCP server is hosted at plutocalc.com, so no local setup required, though you can self-host from the GitHub repo if needed.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Plutocalc Designer MCP Server

MCP server for the Plutocalc Designer REST API, providing access to water and wastewater treatment system design tools through the Model Context Protocol.

Registry Name: io.github.danpeig/plutocalcdesigner-mcp
Version: 2.5.1
MCP server URL: https://www.plutocalc.com/designer/mcp
OpenAPI specs: https://www.plutocalc.com/designer/server/openapi.json

About Plutocalc Designer

Plutocalc Designer is an online engineering tool for sizing water and wastewater treatment systems. Engineers select a design model, fill in a calculation template, and run the computation to receive a completed template with design results. Learn more at https://www.plutocalc.com/designer.


Using Plutocalc Designer from your AI platform

There are three ways of connecting Plutocalc Designer to AI applications:

  • Connecting via the MCP server (recommended)
  • Connecting directly to the API using OpenAPI specs (alternative)
  • Hosting your own instance of the MCP server (for developers)

Connecting via the MCP server (automatic)

The easiest way to use Plutocalc Designer with your AI assistant is through the MCP Registry:

  1. In Claude Desktop or your MCP-compatible client, search for:

    plutocalcdesigner-mcp
    

    or

    io.github.danpeig/plutocalcdesigner-mcp
    
  2. Click "Add" or "Install" - The server will be automatically configured.

  3. Start using it! Ask your AI assistant:

    • "List available wastewater treatment models"
    • "Get the template for the stripping tower"
    • "Help me design a biological treatment system"

Connecting via the MCP server (manual)

If you need to configure manually, add this to your MCP client configuration:

For Claude Desktop (claude_desktop_config.json):

{
  "mcpServers": {
    "plutocalcdesigner": {
      "url": "https://www.plutocalc.com/designer/mcp",
      "transport": "http"
    }
  }
}

For other MCP clients:

  • Server URL: https://www.plutocalc.com/designer/mcp
  • Transport Type: HTTP
  • Name: plutocalcdesigner (or any name you prefer)

Connecting directly to the API using the OpenAPI specifications

Another way to connect AI models to Plutocalc Designer is use the API directly. In this case, the model can retrieve instructions from the OpenAPI json specifications available at https://www.plutocalc.com/designer/server/openapi.json

A more detailed description of the API with instructions and examples, suitable for humans or LLMs, can be found in: https://www.plutocalc.com/designer/api.html

Hosting the MCP server

This method hosts the MCP server only, not the Plutocalc Designer. The local server requires internet connectivity to connect to the Plutocalc Designer API.

Use this method if you are facing connectivity issues with Plutocalc Designer MCP server or for development purposes.

# Clone the repository
git clone https://github.com/danpeig/plutocalcdesigner-mcp.git
cd plutocalcdesigner-mcp

# Install dependencies
npm install

# Start the server
npm start

The server will start on port 3003 by default (configurable via PORT environment variable).

If you need to check if the server is working, see TEST_CLIENT_README.md for detailed instructions.

Available tools

  1. server_version - Get Plutocalc Designer server version string
  2. server_status - Get Plutocalc Designer server status
  3. license_status - Check license credits balance (requires licenseKey)
  4. list_models - List available calculation models
  5. list_models_info - List available models with detailed information including manuals (recommended starting point)
  6. get_model - Get model name and version (requires model)
  7. get_model_information - Get detailed model information (requires model)
  8. get_model_template - Get calculation input template (requires model)
  9. get_model_referencedb - Get reference database entries (requires model)
  10. get_model_unitslist - Get supported units list (requires model)
  11. compute_model - Run model calculation (requires model and input)
  12. json_to_markdown - Convert model JSON template to readable Markdown format (requires model and input)
  13. markdown_to_json - Convert Markdown format back to JSON template (requires model and input)
  14. model_manual - Get URL to the model help/manual page (requires model)
  15. license_help - Get information about license key requirements

Contact

  • Author: Daniel BP
  • Email: contact@plutocalc.com
  • Website: https://www.plutocalc.com
  • Repository: https://github.com/danpeig/plutocalcdesigner-mcp
  • MCP Registry: https://registry.modelcontextprotocol.io (search for "plutocalcdesigner")
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Categories
Design & Creative
Registryactive
UpdatedFeb 6, 2026
View on GitHub

Related Design & Creative MCP Servers

View all →
HTML to Figma — Design System

miapre/html-to-figma-design-system

Translate HTML prototypes into Figma using your design system's real components and tokens.
3
Illustrator Mcp Server

ie3jp/illustrator-mcp-server

Read, manipulate, and export Adobe Illustrator design data. 26 tools. macOS | Windows.
44
Godot

coding-solo/godot-mcp

MCP server for interfacing with Godot game engine. Provides tools for launching the editor, running projects, and capturing debug output.
3.7k
Unity Mcp

ivanmurzak/unity-mcp

Make 3D games in Unity Engine with AI. MCP Server + Plugin for Unity Editor and Unity games.
3.1k
Excalidraw

yctimlin/mcp_excalidraw

Provides an Excalidraw canvas exposed via MCP for real-time diagramming and element CRUD from AI agents.
1.9k
Figma MCP Server

figma/mcp-server-guide

The Figma MCP server brings Figma design context directly into your AI workflow.
1.6k