HoPe Chatbot MCP Server
Click on "Deploy 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., "@HoPe Chatbot MCP ServerList the available MCP tools and resources in this server."
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.
HoPe Chatbot MCP Server
Uses FastMCP v3.
For code organization reasons MCP functionality is split into logical modules, MCP sub-servers.
Main MCP server can import/mount sub-domain MCP servers. (mcp_server/app.py)
Development
Define your capabilities separated to composable MCP servers.
Define new MCP tools, resources, prompts...
for <some> domain
for <some> business capability
in <some> MCP sub-server
in mcp_server/servers/<some>/mcp.py.
Expose MCP server capabilities
Decide how you want your MCP tools, resources, prompts... to be available:
in 1 combined MCP server (all-in-one) 🌐
as separate MCP server only 🔒🪪
both ✨
All-in-one MCP server
Include sub-domain MCP server in combined MCP server.
Follow these steps in mcp_server/app.py:
Import your FastMCP app
from mcp_server.servers.some import some_mcpFind main MCP server defined. Add capabilities of your MCP server into main MCP server in startup/setup lifespan phase of main MCP server
async def setup(app: FastMCP): # Import or mount subservers app.mount(some_mcp) # dynamic mount # await app.import_server(some_mcp) # static copy @contextlib.asynccontextmanager async def lifespan(app: FastMCP): # Setup await setup(app) yield # Cleanup main_mcp = FastMCP( name="home-of-performance-mcp-server", lifespan=lifespan )Main combined MCP server contains capabilities of your MCP server at:
BASE_URL/mcp.It should be true for main combined MCP server ran in all cases:
mcp_server/app.pyran as a moduleFastMCP.run method
mcp_server/app.pyran with uvicornFastMCP.http_appASGI app of your MCP server mount to FastAPI app, uvicorn accessing FastAPI ASGI app
(uvicorn accessing your ASGI directly will work too)
Separate MCP server
Expose separate sub-domain MCP server.
Follow these steps in mcp_server/app.py:
Import your FastMCP app
from mcp_server.servers.some import some_mcpCreate ASGI app from your FastMCP app
(no need to redefine
path="/mcp"kwarg)some_mcp_app = some_mcp.http_app()Add lifespan of your FastMCP app to combined lifespan used by FastAPI app
@contextlib.asynccontextmanager async def combined_lifespan(app: FastAPI): """Combine lifespans for FastAPI app""" # Run all lifespans async with main_mcp_app.lifespan(app): async with some_mcp_app.lifespan(app): # Setup yield # Cleanup fastapi_app = FastAPI( title="Home of Performance MCP", lifespan=combined_lifespan )Mount ASGI app of your MCP server to FastAPI app under
/somepathfastapi_app.mount("/some", some_mcp_app)find your separate MCP server at:
BASE_URL/some/mcp
Related MCP server: Golf
Running locally
Define environment variables in
.envaccording to.env.template(do not commit secrets)Install required python packages from
requirements.txtStart FastMCP app through
runmethodpython -m mcp_server.appor run FastAPI app with MCP server(s) mount into it through gunicorn, uvicorn...
source .venv/bin/activate && uvicorn src.app:app --host 0.0.0.0 --port 8000 --reload
This server cannot be deployed
Maintenance
Related MCP Connectors
Search, vet & assemble MCP servers from your agent: verified tools, risk labels, and trust scores.
Capability registry for the agentic economy. Semantic search over verified MCP server listings.
The Remote MCP server acts as a standardized bridge between LLM applications (like Claude, ChatGPT, and Cursor) and external services, enabling AI agents to access external tools and resources. Its primary capability is providing a centralized search tool to discover other MCP servers and their respective tools. Unlike local implementations, it runs remotely with OAuth authentication and permission controls for security.
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
Related MCP Servers
- FlicenseNot gradedqualityCmaintenanceEnables dynamic loading, hot-reloading, and orchestration of MCP servers without restarting Claude Code, allowing programmatic tool calling and workflow automation across multiple servers.2-
- AlicenseNot gradedqualityCmaintenanceEasiest framework for building MCP servers with automatic discovery of tools, prompts, and resources, plus enterprise-grade authentication and telemetry.840Apache 2.0

Fluent MCPofficial
AlicenseNot gradedqualityDmaintenanceEnables building MCP servers with embedded reasoning, allowing complex tasks to be offloaded to an internal LLM for token and cost efficiency.1MIT- AlicenseNot gradedqualityDmaintenanceAggregates multiple MCP servers into a single endpoint, enabling LLM clients to access tools, resources, and prompts from various backends through one connection.7 npmMIT