Follow the instructions below to set up your MCP server and complete the application process.
Use the provided starter code to spin up a local MCP server.
| #!/usr/bin/env python3 | |
| # -*- coding: utf-8 -*- | |
| # File: nrg-facemasking.py | |
| # Author: Arjit Jain <thearjitjain@gmail.com> | |
| import os | |
| from subprocess import call | |
| import itk | |
| import argparse |
| import argparse | |
| from sphinx.cmd.quickstart import generate | |
| parser = argparse.ArgumentParser() | |
| parser.add_argument('--project', help='Project name') | |
| parser.add_argument('--path', help='Root path for documentation.', default='.') | |
| parser.add_argument('--sep', help='Separate source and build directories (y/n)', default='n') | |
| parser.add_argument('--dot', help='Name prefix for templates and static dir', default='_') | |
| parser.add_argument('--author', help='Author name(s)', default='author') | |
| parser.add_argument('--version', help='Project version', default='1.0') |