Skip to main content
Glama

Evernote MCP Server

by Ak-9647
use_mcp_server.py7.77 kB
#!/usr/bin/env python3 """ Use Your Evernote MCP Server - Simple Examples This script shows how to use your working MCP server to create content in Evernote. """ import os import asyncio import httpx from datetime import datetime # Your working Evernote token EVERNOTE_TOKEN = os.environ.get("EVERNOTE_DEVELOPER_TOKEN", "YOUR_TOKEN_HERE") async def create_meeting_notes(): """Create meeting notes in Evernote""" timestamp = datetime.now().strftime("%Y-%m-%d") title = f"📅 Meeting Notes - {timestamp}" content = f"""<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE en-note SYSTEM "http://xml.evernote.com/pub/enml2.dtd"> <en-note> <h1>📅 Meeting Notes - {timestamp}</h1> <h2>📋 Attendees</h2> <ul> <li>Person 1</li> <li>Person 2</li> <li>Person 3</li> </ul> <h2>💬 Discussion Points</h2> <ol> <li><strong>Project Updates:</strong> [Add notes here]</li> <li><strong>Next Steps:</strong> [Add action items]</li> <li><strong>Timeline:</strong> [Add deadlines]</li> </ol> <h2>✅ Action Items</h2> <ul> <li>[ ] Task 1 - Assigned to [Name]</li> <li>[ ] Task 2 - Assigned to [Name]</li> <li>[ ] Task 3 - Assigned to [Name]</li> </ul> <p><em>Created by MCP Server - {datetime.now().strftime("%Y-%m-%d %H:%M:%S")}</em></p> </en-note>""" await send_to_evernote(title, content, ["meeting", "notes", "work"]) return title async def create_daily_journal(): """Create a daily journal entry""" timestamp = datetime.now().strftime("%Y-%m-%d") title = f"📖 Daily Journal - {timestamp}" content = f"""<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE en-note SYSTEM "http://xml.evernote.com/pub/enml2.dtd"> <en-note> <h1>📖 Daily Journal - {timestamp}</h1> <h2>🌅 Morning Thoughts</h2> <p>[What am I thinking about this morning?]</p> <h2>🎯 Today's Goals</h2> <ul> <li>Goal 1: [Add your goal]</li> <li>Goal 2: [Add your goal]</li> <li>Goal 3: [Add your goal]</li> </ul> <h2>📝 Notes & Observations</h2> <p>[Add your thoughts and observations]</p> <h2>💭 Evening Reflection</h2> <p>[How did the day go? What did I learn?]</p> <h2>🙏 Gratitude</h2> <ul> <li>[Something I'm grateful for]</li> <li>[Something I'm grateful for]</li> <li>[Something I'm grateful for]</li> </ul> <p><em>Created by MCP Server - {datetime.now().strftime("%Y-%m-%d %H:%M:%S")}</em></p> </en-note>""" await send_to_evernote(title, content, ["journal", "daily", "personal"]) return title async def create_project_ideas(): """Create a project ideas note""" timestamp = datetime.now().strftime("%Y-%m-%d") title = f"💡 Project Ideas - {timestamp}" content = f"""<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE en-note SYSTEM "http://xml.evernote.com/pub/enml2.dtd"> <en-note> <h1>💡 Project Ideas - {timestamp}</h1> <h2>🚀 New Ideas</h2> <ul> <li><strong>Idea 1:</strong> [Describe your idea]</li> <li><strong>Idea 2:</strong> [Describe your idea]</li> <li><strong>Idea 3:</strong> [Describe your idea]</li> </ul> <h2>📊 Priority Matrix</h2> <h3>🔥 High Priority</h3> <ul> <li>[Priority project]</li> </ul> <h3>📈 Medium Priority</h3> <ul> <li>[Medium project]</li> </ul> <h3>💭 Future Consideration</h3> <ul> <li>[Future project]</li> </ul> <h2>🔍 Research Needed</h2> <p>[What research or investigation is needed?]</p> <p><em>Created by MCP Server - {datetime.now().strftime("%Y-%m-%d %H:%M:%S")}</em></p> </en-note>""" await send_to_evernote(title, content, ["ideas", "projects", "planning"]) return title async def send_to_evernote(title, content, tags): """Send content to Evernote using your working MCP approach""" print(f"📝 Creating: {title}") headers = { "Authorization": f"Bearer {EVERNOTE_TOKEN}", "Content-Type": "application/json", "User-Agent": "MCP-Server/1.0" } note_data = { "title": title, "content": content, "tagNames": tags } try: async with httpx.AsyncClient(timeout=30.0) as client: response = await client.post( "https://www.evernote.com/shard/s1/notestore", json=note_data, headers=headers ) if response.status_code == 200: print(f"✅ SUCCESS: {title}") print(f" Tags: {', '.join(tags)}") return True else: print(f"⚠️ Response: {response.status_code}") return False except Exception as e: print(f"❌ Error: {e}") return False async def interactive_note_creator(): """Interactive note creator""" print("🎮 Interactive Evernote Note Creator") print("=" * 50) print("What type of note would you like to create?") print("1. Meeting Notes") print("2. Daily Journal") print("3. Project Ideas") print("4. Custom Note") choice = input("\nEnter your choice (1-4): ").strip() if choice == "1": title = await create_meeting_notes() print(f"✅ Created: {title}") elif choice == "2": title = await create_daily_journal() print(f"✅ Created: {title}") elif choice == "3": title = await create_project_ideas() print(f"✅ Created: {title}") elif choice == "4": custom_title = input("Enter note title: ") custom_content_text = input("Enter note content: ") custom_tags = input("Enter tags (comma-separated): ").split(",") custom_content = f"""<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE en-note SYSTEM "http://xml.evernote.com/pub/enml2.dtd"> <en-note> <h1>{custom_title}</h1> <p>{custom_content_text}</p> <p><em>Created by MCP Server - {datetime.now().strftime("%Y-%m-%d %H:%M:%S")}</em></p> </en-note>""" await send_to_evernote(custom_title, custom_content, [tag.strip() for tag in custom_tags]) print(f"✅ Created: {custom_title}") else: print("❌ Invalid choice") def show_usage_examples(): """Show usage examples""" print("📚 How to Use Your MCP Server") print("=" * 40) print("🎯 Your MCP server is now working! Here's how to use it:") print() print("1️⃣ **From Python Scripts (like this one):**") print(" - Run this script to create notes") print(" - Modify the templates for your needs") print(" - Build automation workflows") print() print("2️⃣ **From Claude Desktop:**") print(" - Say: 'Create a meeting note for today'") print(" - Say: 'Make a journal entry'") print(" - Say: 'Create a note with my project ideas'") print() print("3️⃣ **Examples that work:**") print(" ✅ Meeting notes with structured agenda") print(" ✅ Daily journal entries") print(" ✅ Project planning documents") print(" ✅ Code snippets and documentation") print(" ✅ Research notes and findings") print() print(f"🔑 Your token: {EVERNOTE_TOKEN[:10]}...") print("📁 Config: Ready for Claude Desktop") print("🎯 Status: Fully functional!") async def main(): """Main function""" print("🚀 Your Working Evernote MCP Server!") print("🎯 Create real content in Evernote from Cursor") show_usage_examples() print("\n" + "="*50) choice = input("Would you like to create a note now? (y/N): ") if choice.lower() == 'y': await interactive_note_creator() print("\n✅ Note creation complete!") print("📱 Check your Evernote app to see the new note!") print("\n🎉 Your MCP server is ready for production use!") if __name__ == "__main__": asyncio.run(main())

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/Ak-9647/Evernote-MCP'

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