docs
Plug-and-Play Documentation
Filter by:--toolall0x Swap API@aashari/boilerplate-mcp-server@layerzerolabs/devtools-evm-hardhat@modelcontextprotocol/sdkArbitrum Stylus: Move CompilerClaude Code MCP Server ModeCreditCoin Wormhole NTTGitHub MCP Server (Claude Code CLI)LayerZero Cardano EndpointMCP Discovery Endpoint (.well-known/mcp.json)Ripple xrpl-py DAO InteractionRootStock BTC Bridge (Flyover v2.3)Stylus Rust SDKSui Move CLISui Prover & BuilderTempo Payment Enginexrpl.js
docs.sh — Copy-paste snippets
[ _ ][ 🗗 ][ X ]
Your GitHub repository is your most important DevRel blog. Tested configs, copy-paste ready.
--tool@@aashari/boilerplate-mcp-server
Updated MCP SDK boilerplate (Feb 2026) with layered architecture for building custom Claude/OpenClaw MCP servers in <30 min.
install
git clone https://github.com/aashari/boilerplate-mcp-server.git && cd boilerplate-mcp-server && npm install && npm run mcp:stdiotypescript
// src/tools/example.tool.ts
import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
import { z } from 'zod';
export function register(server: McpServer) {
server.tool('get_data', 'Gets data from API',
{ param: z.string() },
async (args) => {
const res = await fetch(`https://api.example.com/${args.param}`);
return { content: [{ type: 'text', text: await res.text() }] };
}
);
}--tool@@aashari/boilerplate-mcp-server
Updated MCP SDK boilerplate (Feb 2026) with layered architecture for building custom Claude/OpenClaw MCP servers in <30 min.
install
git clone https://github.com/aashari/boilerplate-mcp-server.git && cd boilerplate-mcp-server && npm install && npm run mcp:stdiotypescript
// src/tools/example.tool.ts
import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
import { z } from 'zod';
export function register(server: McpServer) {
server.tool('get_data', 'Gets data from API',
{ param: z.string() },
async (args) => {
const res = await fetch(`https://api.example.com/${args.param}`);
return { content: [{ type: 'text', text: await res.text() }] };
}
);
}