Design TodayDefine Tomorrow

What we build
Products

What we build

A source-available framework for the developer community, alongside AI-powered tools for consumers and professionals.

Simply MCP icon

Simply MCP

simply-mcp

The fastest way to build Model Context Protocol servers in TypeScript. Define a tool once and the types, schemas, and runtime validation flow everywhere, or let an AI build the server for you from a one-line description.

  • Tier 1 MCP-compliant (spec 2025-11-25)
  • Rich interactive UIs via MCP Apps (SEP-1865)
  • Deploy the same server to ChatGPT — OpenAI-compatible
  • Multi-transport: stdio, HTTP, WebSocket
server.ts
import { createServer, createTool } from 'simply-mcp';

export const server = createServer({
  name: 'ticketing-server',
  version: '1.0.0',
});

export const createTicket = createTool({
  description: 'Create a support ticket',
  params: {
    title: { type: 'string', description: 'Ticket title' },
    priority: {
      type: 'enum',
      values: ['low', 'medium', 'high'],
      description: 'Triage priority',
    },
    labels: {
      type: 'array',
      items: { type: 'string' },
      optional: true,
    },
  },
  handler: ({ title, priority }) => ({
    ticketId: 'TICKET-123',
    title,
    priority,
  }),
});
AI Magic Fish icon

AI Magic Fish

aimagicfish.com

A platform for creating personalized illustrated storybooks featuring children as the main characters. Upload a photo and our AI generates custom illustrations placing your child throughout their own adventure.

  • Personalized AI illustrations
  • Professional print quality
  • COPPA-compliant & secure
Biopsy Results icon

Biopsy Results

An algorithmic productivity tool for dermatologists to more rapidly create templated patient letters and generate referral text and routing information for staff. Speeds up the reporting process, improving quality of care and decreasing physician burnout.

  • Automated templated patient letter generation
  • Intelligent referral routing system
  • Customizable workflow templates
  • HIPAA-compliant data handling
Capabilities

Technology that transforms healthcare and development

We combine AI expertise with deep domain knowledge to deliver solutions that improve patient outcomes, enhance developer productivity, and drive measurable results.

AI-Driven Innovation

We integrate artificial intelligence into healthcare workflows and developer tools, creating systems that learn, adapt, and enhance decision-making.

Healthcare Solutions

Building technology that improves patient care, reduces physician burnout, and simplifies clinical workflows with intelligent automation.

Rapid Development

From concept to deployment, we deliver production-ready solutions quickly without compromising quality or security.

Enterprise-Grade Security

HIPAA-compliant infrastructure, enterprise security, and scalable architecture designed for mission-critical applications.

Modern Tech Stack

TypeScript, React, Hono, and TanStack, with AI frameworks where they earn their place. A stack chosen to stay fast to ship and easy to maintain.

Developer-First Tools

Type-safe TypeScript frameworks and clear documentation, built for the developers who actually use them.

Get in touch

Ready to innovate with us?

Tell us about a healthcare workflow or a developer tool you have in mind — we read every message.

Send us a message

Direct line to the studio

0/5000
Open source

Or skip the intro — jump into the code.

Simply MCP ships under our org on GitHub. Star, fork, or open an issue.

Contribute

Found a bug? Have a feature in mind?

Issues and PRs welcome — conventions live in each repo's CONTRIBUTING.md.

Browse all repositories