mcp-server-skeleton
Allows integration with Meta Ads to manage advertising campaigns and ad sets.
Allows integration with n8n for workflow automation and orchestration.
Allows integration with Shopify to manage e-commerce operations such as products, orders, and customers.
Allows integration with Supabase for database operations, authentication, and real-time features.
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., "@mcp-server-skeletonregister a tool that converts Celsius to Fahrenheit"
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-server-skeleton
A minimal Model Context Protocol (MCP) server skeleton — stdlib only
(JSON-RPC 2.0 over stdio). Implements the core handshake (initialize,
tools/list, tools/call) so you can register your own tools with zero
external dependencies. Wire in Shopify / Meta Ads / Supabase / n8n and expose
them to Claude, Cursor, Codex, Gemini, or Hermes.
Original project, aligned with the "Agent Skills / MCP" trend. Not another MCP directory — a runnable server you extend.
Register a tool
from mcp_server import MCPServer
server = MCPServer("my-tools", "0.1.0")
server.register_tool(
"add", "Add two numbers",
{"type": "object", "properties": {"a": {"type": "number"}, "b": {"type": "number"}}},
lambda args: str(args["a"] + args["b"]),
)
server.serve_stdio()Related MCP server: veriloop
Testing
pip install -e ".[dev]"
pytestLicense
MIT — see LICENSE.
Links
🌐 Website: huggehub.com
💻 GitHub: @astrodevit-creator
🔗 LinkedIn: El Badaoui Hatim
This server cannot be deployed
Maintenance
Related MCP Connectors
A registry of AI agent tools — MCP servers, APIs, CLIs, SDKs — kept current by automated ingestion.
The cloud for agents. Tools for AI agents to register, build, and deploy other agents. Zero human required.
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
Reliable async execution for agent tool calls: schema gating, retries, idempotency, audit trail.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceExposes any OpenAPI spec endpoints as AI agent tools via stdio, requiring no code generation or maintenance.18MIT
- AlicenseAqualityCmaintenanceExposes a verified tool registry (calculator, sandboxed file read, web fetch) over MCP stdio, enabling any MCP-capable client to reuse the same tools from the inspectable ReAct loop.3MIT
- AlicenseNot gradedqualityCmaintenanceEnables local tool calling over Model Context Protocol via stdio, providing deterministic tools such as calc.add, text.word_count, and text.summarize_naive after JSON-RPC handshake and discovery.MIT
- AlicenseAqualityBmaintenanceEnables an AI agent to run local tools on the user's own machine via stdio, including command execution, workspace file read/write, and system status checks.52MIT