Custom Node & Server Development
Building Your Own MCP Server (Python/TypeScript)
bashCopyEdit# TypeScript npx create-contextmesh-server my-server # Python pip install contextmesh-mcp-server mcp-server init my_serverbashCopyEditnpm start # for TS python server.py # for Python
Defining Custom Block Schemas
jsonCopyEdit{
"title": "FetchOnchainData",
"type": "object",
"properties": {
"endpoint": { "type": "string", "format": "uri" },
"query": { "type": "string" }
},
"required": ["endpoint", "query"]
}Packaging & Publishing Connectors
Last updated