Add JSON API endpoint, CLI tool, and MCP server

- Add /api/finger and /api/finger/<username> JSON endpoints
- Remove hardcoded default credentials from config.py; require BASIC_AUTH_USERS env var
- Add cli/finger.py: query and plan-upload CLI using the JSON API
- Add mcp/server.py: FastMCP server exposing finger_user and upload_plan tools
- All credentials and base URL are read from environment variables
This commit is contained in:
waffle2k
2026-05-07 12:03:23 -07:00
parent 1e53363271
commit 178d3f361c
6 changed files with 227 additions and 14 deletions
+21 -10
View File
@@ -169,25 +169,36 @@ def finger_direct(username):
return render_template('finger.html', title=f'Finger - {username}', result=result, error=error, username=username)
@app.route('/api/hello')
def api_hello():
"""Simple JSON API endpoint"""
return jsonify({
'message': 'Hello from Flask API!',
'status': 'success',
'version': '1.0'
})
@app.route('/api/finger')
@app.route('/api/finger/<path:username>')
def api_finger(username=None):
"""JSON API endpoint for finger queries"""
if username is None:
username = request.args.get('user', '')
if username:
if not all(c.isalnum() or c in '.-_@' for c in username):
return jsonify({'error': 'Invalid username', 'status': 'error'}), 400
cmd = ['finger', username]
else:
cmd = ['finger']
success, output, is_error = run_finger_command(cmd)
if success:
return jsonify({'result': output, 'username': username, 'status': 'success'})
return jsonify({'error': output, 'status': 'error'}), 500
@app.route('/api/info')
def api_info():
"""API info endpoint"""
return jsonify({
'app_name': 'Finger Web Flask App',
'app_name': 'finger-web',
'routes': [
'/',
'/finger',
'/finger/<username>',
'/api/hello',
'/api/finger',
'/api/finger/<username>',
'/api/info',
'/api/upload'
],