1. Conduid
  2. AI
  3. server
MCP server · AI

server

Model Context Protocol server for HyperFixi hyperscript development

Unclaimed ai
39Low

Scored 4 months ago · breakdown

About server

server is an MCP server published by git+codetalcott in the AI category: model Context Protocol server for HyperFixi hyperscript development. It has been installed 0 times through Conduid.

Install

Install
npx @hyperfixi/mcp-server
Claude Code
claude mcp add hyperfixi -- npx -y @hyperfixi/mcp-server
npx
npx -y @hyperfixi/mcp-server

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about server

Powered by Claude · Grounded in docs

I know everything about server. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README

HyperFixi

CI codecov npm version

A tree-shakeable _hyperscript runtime. Human-readable UI behaviors from 7 KB.

Try It

Save this as an HTML file and open it in your browser — or try it live.

<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8" />
  </head>
  <body>
    <button _="on click toggle .active on me">Toggle</button>

    <button
      _="on click
        set my.count to (my.count or 0) + 1
        then put 'Clicks: ' + my.count into me"
    >
      Clicks: 0
    </button>

    <button _="on click toggle @hidden on #message">Show/Hide</button>
    <p id="message">Hello from HyperFixi.</p>

    <style>
      .active {
        background: #0066cc;
        color: white;
        border-radius: 4px;
      }
    </style>
    <script src="https://unpkg.com/@hyperfixi/core/dist/hyperfixi-hybrid-complete.js"></script>
  </body>
</html>

No server, no npm, no build step. Just save and open.

Install

CDN (simplest):

<script src="https://unpkg.com/@hyperfixi/core/dist/hyperfixi-hybrid-complete.js"></script>

Vite (recommended for production):

npm install @hyperfixi/vite-plugin
// vite.config.js
import { hyperfixi } from '@hyperfixi/vite-plugin';
export default { plugins: [hyperfixi()] };

The plugin scans your files for _="..." attributes and generates a minimal bundle with only the commands you use.

What You Get

  • 43 commands -- toggle, add, remove, set, put, fetch, repeat, if/else, and more
  • _hyperscript compatible -- existing hyperscript code works as-is
  • Tree-shakeable -- ship only the commands you use (1.9 KB to 200 KB)
  • TypeScript types -- full type safety with comprehensive definitions
  • Optional multilingual -- write hyperscript in 24 languages (lokascript.org)
  • Optional htmx compat -- htmx-like attributes via the hyperfixi-hx.js bundle
  • 8100+ tests across all packages

Package Scopes

  • @hyperfixi/* -- Core engine: runtime, parser, commands, vite-plugin, behaviors
  • @lokascript/* -- Multilingual: semantic parser, i18n grammar, language tools, domain DSLs

Use @hyperfixi/* packages. Add @lokascript/* only if you need multilingual support.

Learn More

Going deeper:

Development

npm install
npm test --prefix packages/core
npm run build:browser --prefix packages/core

License

MIT

README mirrored from the source repository 4 months ago. The original is authoritative.

Questions

About server

How do I install server?

Run npx @hyperfixi/mcp-server, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is server safe to use with an AI agent?

Its trust score is 39 out of 100 (low). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is server still maintained?

Conduid hasn't recorded a commit date for this repository yet. Check the repository directly for recent activity.