sign-in-form
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@sign-in-formshow me the sign-in form"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP App Template
A small, ready-to-customize template for building an interactive Model Context Protocol (MCP) app with React and TypeScript.
The project includes:
An MCP server built with the TypeScript SDK
An interactive React UI registered as an MCP App resource
A sample
open-sign-intool that displays the UI in a compatible MCP hostStreamable HTTP and stdio transport support
A Vite build that packages the UI into a single HTML file
Development, build, serve, and type-check scripts
The included sign-in form is only a UI example. It does not authenticate users or send credentials to a server. Replace it with your own interface and application logic.
Requirements
Node.js 20 or newer
npm
An MCP client or host with MCP Apps support to display the interactive UI
Related MCP server: MCP Docker Demo
Create a project from the template
On GitHub, click Use this template, choose Create a new repository, and then clone the repository you created:
git clone https://github.com/YOUR_USERNAME/YOUR_REPOSITORY.git
cd YOUR_REPOSITORYAlternatively, clone this repository directly.
Install
Install the project dependencies:
npm installDevelopment
Start the UI and MCP server in watch mode:
npm run devThe MCP endpoint is available at:
http://localhost:3001/mcpThe development command rebuilds the UI when files change and restarts the server when its TypeScript files change.
Build and run
Create a production build and start the server:
npm run build
npm run serveTo use another port, set the PORT environment variable:
PORT=4000 npm run serveYour endpoint will then be http://localhost:4000/mcp.
Connect an MCP client
Streamable HTTP
Configure your MCP client to connect to:
http://localhost:3001/mcpAfter connecting, call the open-sign-in tool. A compatible MCP Apps host will render the interactive form returned by the server.
stdio
Clients that launch local MCP servers can run this project over stdio. For example, use a configuration equivalent to:
{
"mcpServers": {
"my-mcp-app": {
"command": "npm",
"args": ["start"],
"cwd": "/absolute/path/to/YOUR_REPOSITORY",
"env": {
"TRANSPORT": "stdio"
}
}
}
}The exact configuration format depends on your MCP client. Use an absolute path for cwd.
You can also test the stdio server from a terminal:
TRANSPORT=stdio npm startCustomize the template
The main files are:
src/main.tsx— React interface and client-side behaviorsrc/style.css— UI stylingserver.ts— MCP tool and UI resource registrationmain.ts— HTTP and stdio transportsvite.config.ts— browser UI build configuration
When adapting the template:
Replace the sample form in
src/main.tsxwith your UI.Update the tool name, description, schemas, and handler in
server.ts.Change the server and app names from
sign-in-formto your project name.If the UI needs to call MCP tools, add those tools to
server.tsand invoke them through the MCP Apps client API.Run
npm run typecheckandnpm run buildbefore publishing.
Public hosting
For remote use, deploy the built Node.js server behind HTTPS and expose its /mcp route. Set PUBLIC_HOST to the public hostname without a protocol:
PUBLIC_HOST=mcp.example.com npm run servePUBLIC_HOST is used by the server's host and origin protection. Update the defaults and security policy in main.ts for your deployment, especially if the UI loads assets or communicates with additional domains.
Scripts
Command | Purpose |
| Run the UI build and MCP server in watch mode |
| Build the single-file UI and compile the server |
| Run the compiled production server |
| Run the TypeScript server directly |
| Type-check the UI and server |
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
- open-sign-inAApp
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceA demonstration MCP server that provides basic utility tools including hello world functionality and string reversal operations. Shows how to build and deploy MCP tools using the MCPO orchestrator framework.GPL 3.0
- FlicenseNot gradedqualityDmaintenanceA demonstration MCP server implementation with Docker support that provides a simple hello-world tool and includes a web-based inspector for interactive testing and exploration of MCP tools.
- FlicenseNot gradedqualityDmaintenanceA minimal MCP server framework that enables zero-config tool discovery and streamable HTTP transport using the LeanMCP SDK. It allows developers to build type-safe services with automatic schema validation and integrated React UI components.
- FlicenseNot gradedqualityDmaintenanceA minimal MCP server that exposes a 'say_hello' tool and serves an Angular UI as an MCP App resource, demonstrating the MCP App architecture.
Related MCP Connectors
MCP server for Appcircle mobile CI/CD platform.
An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform
A basic MCP server to operate on the Postman API.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/krasnoff/mcp-app-template'
If you have feedback or need assistance with the MCP directory API, please join our Discord server