Skip to content

Instantly share code, notes, and snippets.

View ArjitJ's full-sized avatar

Arjit Jain ArjitJ

View GitHub Profile

🚀 MCP Server Setup Instructions

Follow the instructions below to set up your MCP server and complete the application process.


✅ Next Steps

Use the provided starter code to spin up a local MCP server.

@ArjitJ
ArjitJ / nrg-facemasking.py
Last active June 7, 2019 22:20
Tool to use face masking software by Neuroinformatics Research Group
#!/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
@ArjitJ
ArjitJ / sphinx_gen.py
Created June 3, 2019 16:15
Create a sphinx documentation for your python project
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')