Skip to main content
Glama

note.com MCP Server

by shimayuz
rewrite_author.py644 B
#!/usr/bin/env python3 import sys for line in sys.stdin: if line.startswith('author '): parts = line.split(' ') if len(parts) >= 3: timestamp = ' '.join(parts[-2:]) print(f'author note-mcp-developer <developer@example.com> {timestamp}') else: print(line, end='') elif line.startswith('committer '): parts = line.split(' ') if len(parts) >= 3: timestamp = ' '.join(parts[-2:]) print(f'committer note-mcp-developer <developer@example.com> {timestamp}') else: print(line, end='') else: print(line, end='')

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/shimayuz/note-com-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server