my-mcp-server
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., "@my-mcp-serverlist all system users"
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.
my-mcp-server
Self-hosted MCP server generated by MCPfy using mcpfy-sdk.
Includes 2 tool(s) and 0 prompt(s) exported from your MCPfy server.
Setup
npm install # required before npm run dev (installs tsx + mcpfy-sdk)
cp .env.example .env # optional fallback credentials for local/stdio
npm run dev # default transport: httpUpstream API auth
Same model as hosted MCPfy: pass Authorization, x-api-key, or x-auth-token on the MCP HTTP connection; tools forward those headers to your API.
Env vars in .env are only a fallback when the MCP request has no auth headers (e.g. stdio).
npm run dev:http— HTTP on :3000 (override with--port 4000orPORT=4000)npm run dev:stdio— stdio (Claude Desktop / Cursor local)
Related MCP server: MCP Server
Cursor / Claude Desktop (stdio)
{
"mcpServers": {
"my-mcp-server": {
"command": "npx",
"args": ["tsx", "/absolute/path/to/src/server.ts", "--stdio"]
}
}
}Learn more
Scaffold your own:
npx create-mcpfy-app@latest
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 Connectors
MCP server for mandates, delegation, policy-gated execution, credential grants, and audit.
Hash passwords with bcrypt and issue/verify JWT session tokens over A2A + MCP.
An authenticated remote MCP server for user-owned devices and one-shot capability invocation.
REST-to-MCP for UK hospitality. Safety proxy: circuit-breakers, rate limits, whitelists. Apache 2.0.
Related MCP Servers
- FlicenseNot gradedqualityNot gradedmaintenanceEnables interaction with Users and Products through a CRUD service REST API, providing tools for listing, creating, reading, updating, and deleting records via HTTP transport.-
- AlicenseNot gradedqualityDmaintenanceA simple MCP server that exposes a createUser tool to add users to a local JSON file via stdio transport.1521MIT
- FlicenseNot gradedqualityCmaintenanceA minimal demo MCP server exposing user management tools (list, get, create, update, delete users) over both stdio and HTTP/SSE transports, wrapping an Express REST API to illustrate local vs remote MCP connectivity.-
- FlicenseNot gradedqualityCmaintenanceEnables creation of MCP servers with both stdio and HTTP transports, providing CRUD tools, resources, and prompts for user management, along with a CLI client for testing and integration.-