FastMCP Demo Server
Enables deployment and running of FastMCP servers on Wasmer Edge, providing a platform for hosting MCP applications with Streamable HTTP transport.
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., "@FastMCP Demo Serveradd 15 and 27"
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.
FastMCP Demo Server + Wasmer
This example shows how to run a Model Context Protocol (MCP) server built with FastMCP on Wasmer Edge.
Demo
https://<your-subdomain>.wasmer.app/ (attach /sse when testing from an MCP-compatible client)
Related MCP server: Python MCP Server
How it Works
main.py defines the MCP application:
mcp = FastMCP("Demo")creates a server instance at import time so Wasmer can loadmain:mcp.Three capabilities are registered:
add(a, b)– a simple tool that sums two integers.greeting://{name}– a dynamic resource that returns a personalised greeting.greet_user(name, style)– a prompt template that chooses wording based on the requested style.
When run as a script,
mcp.run(transport="streamable-http")starts the server using the Streamable HTTP transport expected by Wasmer Edge.
Use these patterns to add your own tools, resources, or prompts before deploying.
Running Locally
python -m venv .venv
source .venv/bin/activate
pip install mcp
python main.pyThe server listens for MCP clients on the default port and transport (Streamable HTTP). Point your MCP client (e.g., ChatGPT or Claude Desktop) to the local endpoint.
Deploying to Wasmer (Overview)
Ensure
main.pyexports themcpinstance (entrypointmain:mcp).Deploy to Wasmer Edge.
Connect your MCP-enabled client to
https://<your-subdomain>.wasmer.app/sse.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-quality-maintenanceA demonstration MCP server that provides calculator tools for arithmetic operations, personalized greeting resources, and code review prompt templates. Enables users to perform basic math calculations, generate dynamic greetings, and access reusable code review templates through the Model Context Protocol.Last updated
- FlicenseDqualityDmaintenanceA demonstration MCP server built with fastmcp that provides basic utility tools including number addition and greeting functionality. Integrates with Gemini CLI to enable natural language interaction with simple mathematical and greeting operations.Last updated2
- Flicense-qualityDmaintenanceEducational example of an MCP server built with FastMCP, demonstrating how to expose tools, resources, and prompts for AI clients.Last updated
Related MCP Connectors
MCP server for AI dialogue using various LLM models via AceDataCloud
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
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/rudushi4/mcp-chatgpt-starter'
If you have feedback or need assistance with the MCP directory API, please join our Discord server