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

Orm Mcp

apolocine/mosta-orm-mcp
STDIOregistry active
Summary

Wraps the mostajs/orm library so Claude and other AI tools can generate TypeScript EntitySchema definitions, validate them against 24 conceptual rules, and produce SQL migrations by diffing schema versions. You get three tools: generate a schema from a prompt describing entities and relations, lint schemas for common modeling mistakes, and create migration SQL from before/after snapshots. Available as a hosted HTTP endpoint or local stdio process. The local version can read your filesystem for cross-file validation rules. Useful if you're building a data model interactively with an AI assistant and want type-safe schema generation plus automated migration scripts without leaving the conversation.

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 →

@mostajs/orm-mcp

MCP server for @mostajs/orm — lets AI dev tools (Claude, Cursor, Cline…) generate EntitySchemas, lint them (24 rules), and produce SQL migrations directly from a prompt.

npm License: AGPL-3.0

Tools

ToolWhat it does
mostajs_generate_schemaBuild a typed EntitySchema (TS) from an entity name + fields (+ relations). Runs the validator on the result.
mostajs_validateLint one or more EntitySchemas with the built-in conceptual validator (24 rules).
mostajs_create_migrationDiff two schema sets → SQL migration (diffSchemas + generateMigrationSQL).

All three reuse @mostajs/orm's public API — no logic is reinvented.

Use it (hosted)

A public instance runs at https://orm-mcp.amia.fr/mcp (Streamable HTTP). Add it to your MCP client:

{
  "mcpServers": {
    "mostajs-orm": { "url": "https://orm-mcp.amia.fr/mcp" }
  }
}

Clients that only speak stdio can bridge it:

npx mcp-remote https://orm-mcp.amia.fr/mcp

Visiting https://orm-mcp.amia.fr/mcp in a browser returns a JSON-RPC 405 — that is expected (MCP is POST-only). The human-readable info page is the root /.

Run it (local, stdio)

npx @mostajs/orm-mcp        # stdio transport — the AI tool spawns this process

Local MCP config (Claude Desktop / Cursor / Cline):

{
  "mcpServers": {
    "mostajs-orm": { "command": "npx", "args": ["-y", "@mostajs/orm-mcp"] }
  }
}

In stdio mode, mostajs_validate also accepts a sourceRoot to enable cross-file rules (it reads the local filesystem — disabled on the hosted server for safety).

Run it (self-hosted HTTP)

PORT=14510 npx @mostajs/orm-mcp        # or: npx @mostajs/orm-mcp --http

Serves the MCP endpoint at /mcp (POST) and a health/info page at /.

End-to-end example

Want to see the schemas this server generates actually run? Sample 18-mcp-to-running-app takes it the whole way: this MCP generates the EntitySchema for an e-commerce model (users/products/orders), then @mostajs/orm applies them and the app runs on sqljs (SQLite WASM, zero native binary). Its scripts/02-report.sh produces a standalone HTML report — the MCP exchange next to the real insert/select output.

npx @mostajs/orm-samples scaffold 18-mcp-to-running-app ~/my-mcp-app
cd ~/my-mcp-app && bash scripts/02-report.sh   # → report.html

License

AGPL-3.0-or-later — © Dr Hamid MADANI. Commercial licensing for @mostajs/orm: drmdh@msn.com.

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 →
Registryactive
Package@mostajs/orm-mcp
TransportSTDIO
UpdatedJun 1, 2026
View on GitHub