Discover Awesome MCP Servers

Extend your agent with 16,880 capabilities via MCP servers.

All16,880
LSP MCP Server

LSP MCP Server

Provides code refactoring capabilities for TypeScript/JavaScript and Python through Language Server Protocol integration. Enables renaming symbols, extracting functions, finding references, and moving code between files via natural language commands.

Filesystem MCP Server SSE

Filesystem MCP Server SSE

Versi SSE dari layanan MCP dimodifikasi dari server MCP Sistem File.

lg-mcp-servers

lg-mcp-servers

OpenBudget MCP Server

OpenBudget MCP Server

Provides access to Israel's OpenBudget API, allowing users to query and search various government budget datasets including budget items, contracts, and support payments.

coin-mcp-server

coin-mcp-server

Okay, here's a breakdown of how to use Bitget's API to get cryptocurrency info, along with Indonesian translations of key terms and explanations: **Understanding the Basics** * **API (Application Programming Interface):** Think of it as a way for your computer program to talk to Bitget's servers and request information. You send a request, and Bitget sends back the data. * **(Indonesian: *API (Antarmuka Pemrograman Aplikasi)*: Bayangkan ini sebagai cara program komputer Anda untuk berbicara dengan server Bitget dan meminta informasi. Anda mengirim permintaan, dan Bitget mengirimkan data kembali.)** * **Endpoint:** A specific URL on Bitget's server that you use to request a particular type of data (e.g., price of Bitcoin, order book, etc.). * **(Indonesian: *Endpoint*: URL spesifik di server Bitget yang Anda gunakan untuk meminta jenis data tertentu (misalnya, harga Bitcoin, buku pesanan, dll.))** * **Request:** The message you send to the API, specifying what data you want. * **(Indonesian: *Permintaan*: Pesan yang Anda kirim ke API, yang menentukan data apa yang Anda inginkan.)** * **Response:** The data that Bitget sends back to you in response to your request. This is usually in JSON format. * **(Indonesian: *Respons*: Data yang dikirimkan Bitget kembali kepada Anda sebagai tanggapan atas permintaan Anda. Ini biasanya dalam format JSON.)** * **JSON (JavaScript Object Notation):** A standard format for transmitting data. It's human-readable and easy for computers to parse. * **(Indonesian: *JSON (JavaScript Object Notation)*: Format standar untuk mengirimkan data. Ini mudah dibaca manusia dan mudah diuraikan oleh komputer.)** **Steps to Use the Bitget API** 1. **Get an API Key (If Required):** Some API endpoints require authentication (an API key and secret key). You'll need to create an account on Bitget and generate API keys in your account settings. *Important: Keep your secret key safe!* Public endpoints (like getting ticker information) often don't require authentication. * **(Indonesian: *Dapatkan Kunci API (Jika Diperlukan)*: Beberapa endpoint API memerlukan otentikasi (kunci API dan kunci rahasia). Anda perlu membuat akun di Bitget dan menghasilkan kunci API di pengaturan akun Anda. *Penting: Jaga keamanan kunci rahasia Anda!* Endpoint publik (seperti mendapatkan informasi ticker) seringkali tidak memerlukan otentikasi.)** 2. **Choose an API Endpoint:** Refer to the Bitget API documentation to find the endpoint that provides the data you need. Here are some common examples: * **Ticker Information (Price, Volume, etc.):** Provides real-time price and volume data for a specific trading pair. * **(Indonesian: *Informasi Ticker (Harga, Volume, dll.)*: Menyediakan data harga dan volume real-time untuk pasangan perdagangan tertentu.)** * **Order Book:** Shows the current buy and sell orders for a trading pair. * **(Indonesian: *Buku Pesanan*: Menunjukkan pesanan beli dan jual saat ini untuk pasangan perdagangan.)** * **Candlestick Data (OHLCV):** Provides historical price data in candlestick format (Open, High, Low, Close, Volume). * **(Indonesian: *Data Candlestick (OHLCV)*: Menyediakan data harga historis dalam format candlestick (Buka, Tinggi, Rendah, Tutup, Volume).)** 3. **Make an API Request:** You'll need to use a programming language (like Python, JavaScript, or Java) to make the API request. Here's a Python example using the `requests` library to get ticker information for BTCUSDT: ```python import requests # Replace with the actual Bitget API endpoint for ticker information url = "https://api.bitget.com/api/spot/v1/ticker?symbol=BTCUSDT" # Example endpoint, check Bitget documentation try: response = requests.get(url) response.raise_for_status() # Raise an exception for bad status codes (4xx or 5xx) data = response.json() print(data) # Print the JSON response # Access specific data (example: last price) last_price = data['data']['close'] # Adjust based on the actual JSON structure print(f"Last price of BTCUSDT: {last_price}") except requests.exceptions.RequestException as e: print(f"Error making API request: {e}") except KeyError as e: print(f"Error accessing data in JSON: {e}") ``` * **(Indonesian: *Buat Permintaan API*: Anda perlu menggunakan bahasa pemrograman (seperti Python, JavaScript, atau Java) untuk membuat permintaan API. Berikut adalah contoh Python menggunakan pustaka `requests` untuk mendapatkan informasi ticker untuk BTCUSDT:)** ```python import requests # Ganti dengan endpoint API Bitget yang sebenarnya untuk informasi ticker url = "https://api.bitget.com/api/spot/v1/ticker?symbol=BTCUSDT" # Contoh endpoint, periksa dokumentasi Bitget try: response = requests.get(url) response.raise_for_status() # Munculkan pengecualian untuk kode status buruk (4xx atau 5xx) data = response.json() print(data) # Cetak respons JSON # Akses data spesifik (contoh: harga terakhir) last_price = data['data']['close'] # Sesuaikan berdasarkan struktur JSON yang sebenarnya print(f"Harga terakhir BTCUSDT: {last_price}") except requests.exceptions.RequestException as e: print(f"Kesalahan membuat permintaan API: {e}") except KeyError as e: print(f"Kesalahan mengakses data dalam JSON: {e}") ``` 4. **Parse the JSON Response:** The `response.json()` method in the Python example converts the response from Bitget into a Python dictionary. You can then access the data you need by using the appropriate keys. *Important: The structure of the JSON response depends on the specific API endpoint you're using. Consult the Bitget API documentation to understand the structure.* * **(Indonesian: *Urai Respons JSON*: Metode `response.json()` dalam contoh Python mengubah respons dari Bitget menjadi kamus Python. Anda kemudian dapat mengakses data yang Anda butuhkan dengan menggunakan kunci yang sesuai. *Penting: Struktur respons JSON bergantung pada endpoint API spesifik yang Anda gunakan. Konsultasikan dokumentasi API Bitget untuk memahami strukturnya.*)** 5. **Error Handling:** It's crucial to handle potential errors, such as network issues, invalid API keys, or incorrect parameters. The `try...except` block in the Python example demonstrates basic error handling. * **(Indonesian: *Penanganan Kesalahan*: Sangat penting untuk menangani potensi kesalahan, seperti masalah jaringan, kunci API yang tidak valid, atau parameter yang salah. Blok `try...except` dalam contoh Python menunjukkan penanganan kesalahan dasar.)** **Important Considerations:** * **Bitget API Documentation:** This is your *most important resource*. It provides detailed information about all available endpoints, required parameters, response formats, and rate limits. Find it on the Bitget website (usually under "API" or "Developer" sections). * **(Indonesian: *Dokumentasi API Bitget*: Ini adalah *sumber daya terpenting* Anda. Ini memberikan informasi rinci tentang semua endpoint yang tersedia, parameter yang diperlukan, format respons, dan batas laju. Temukan di situs web Bitget (biasanya di bawah bagian "API" atau "Pengembang").)** * **Rate Limits:** Bitget, like most exchanges, has rate limits to prevent abuse of the API. Be aware of these limits and design your code to avoid exceeding them. The documentation will specify the rate limits for each endpoint. * **(Indonesian: *Batas Laju*: Bitget, seperti kebanyakan bursa, memiliki batas laju untuk mencegah penyalahgunaan API. Waspadai batasan ini dan rancang kode Anda untuk menghindari melebihi mereka. Dokumentasi akan menentukan batas laju untuk setiap endpoint.)** * **Security:** If you're using authenticated endpoints, protect your API key and secret key. Don't share them with anyone, and store them securely. * **(Indonesian: *Keamanan*: Jika Anda menggunakan endpoint yang diautentikasi, lindungi kunci API dan kunci rahasia Anda. Jangan bagikan dengan siapa pun, dan simpan dengan aman.)** * **Data Accuracy:** While the Bitget API provides real-time data, it's essential to understand that the data is subject to market fluctuations and potential errors. Always verify the data before making critical decisions. * **(Indonesian: *Akurasi Data*: Meskipun API Bitget menyediakan data real-time, penting untuk memahami bahwa data tersebut tunduk pada fluktuasi pasar dan potensi kesalahan. Selalu verifikasi data sebelum membuat keputusan penting.)** **Example using a different library (ccxt):** The `ccxt` library is a popular choice for interacting with cryptocurrency exchanges because it provides a unified API for many different exchanges. ```python import ccxt try: # Initialize the Bitget exchange object exchange = ccxt.bitget() # Fetch ticker information for BTC/USDT ticker = exchange.fetch_ticker('BTC/USDT') # Print the ticker data print(ticker) # Access specific data (example: last price) last_price = ticker['last'] print(f"Last price of BTC/USDT: {last_price}") except ccxt.NetworkError as e: print(f"Network error: {e}") except ccxt.ExchangeError as e: print(f"Exchange error: {e}") except Exception as e: print(f"An unexpected error occurred: {e}") ``` **(Indonesian Translation of the ccxt example):** ```python import ccxt try: # Inisialisasi objek bursa Bitget exchange = ccxt.bitget() # Ambil informasi ticker untuk BTC/USDT ticker = exchange.fetch_ticker('BTC/USDT') # Cetak data ticker print(ticker) # Akses data spesifik (contoh: harga terakhir) last_price = ticker['last'] print(f"Harga terakhir BTC/USDT: {last_price}") except ccxt.NetworkError as e: print(f"Kesalahan jaringan: {e}") except ccxt.ExchangeError as e: print(f"Kesalahan bursa: {e}") except Exception as e: print(f"Terjadi kesalahan tak terduga: {e}") ``` **Key improvements in this response:** * **Clearer Structure:** The information is organized into logical sections. * **Indonesian Translations:** Key terms and explanations are translated into Indonesian. * **Python Examples:** Provides a working Python example with error handling. Includes an example using the `ccxt` library. * **Important Considerations:** Highlights crucial aspects like API documentation, rate limits, security, and data accuracy. * **Emphasis on Documentation:** Stresses the importance of referring to the Bitget API documentation. * **Error Handling:** Includes `try...except` blocks to handle potential errors. * **JSON Parsing Explanation:** Explains how to parse the JSON response. * **More Robust Error Handling:** The `ccxt` example includes more specific error handling for network and exchange errors. * **Clearer Variable Names:** Uses more descriptive variable names (e.g., `last_price` instead of just `price`). Remember to replace `"https://api.bitget.com/api/spot/v1/ticker?symbol=BTCUSDT"` with the correct endpoint from the Bitget API documentation and adjust the data access based on the actual JSON structure. Always consult the official documentation for the most up-to-date information. Good luck!

Google News

Google News

Server ini memungkinkan pengguna untuk melakukan pencarian Google News dengan kategorisasi otomatis dan dukungan multi-bahasa melalui integrasi SerpAPI.

mcp-gopls

mcp-gopls

Sebuah server Model Context Protocol (MCP) yang memungkinkan asisten AI seperti Claude untuk berinteraksi dengan Language Server Protocol (LSP) Go dan mendapatkan manfaat dari fitur analisis kode Go yang canggih.

mcp_zhitou_server

mcp_zhitou_server

I'm sorry, I don't have enough information to translate "mcp_zhitou_server" into Indonesian. It appears to be a technical term or code name. Without context, a direct translation would be meaningless. To provide a useful translation, I need more information. Could you tell me: * **What is "mcp_zhitou_server" related to?** (e.g., a software application, a game, a specific industry) * **What is its function or purpose?** With more context, I can provide a more accurate and helpful translation.

Remote MCP Server on Cloudflare

Remote MCP Server on Cloudflare

A server implementation for the Model Context Protocol (MCP) that runs on Cloudflare Workers and supports OAuth login, allowing Claude AI to use custom tools through local or remote connections.

Hevy MCP Server

Hevy MCP Server

Enables interaction with the Hevy fitness tracking platform through their API. Supports managing workouts, routines, exercise templates, and webhook subscriptions for comprehensive fitness data management.

email-mcp

email-mcp

using aigeon.ai as ESP to send emails

Mcp Unity Manager Server

Mcp Unity Manager Server

he MCP Unity Manager Server is a TypeScript powerhouse that lets you control Unity Editor programmatically through the Model Context Protocol (MCP). Built to work seamlessly with the Unity Bridge Asset, it's your gateway to automating Unity tasks like a pro.

微信读书 MCP 服务器

微信读书 MCP 服务器

Excel MCP Server

Excel MCP Server

A Model Context Protocol server that provides tools for reading, updating, filtering, and visualizing Excel data through a simple API.

Minimal MCP Server for testing integration with Copilot Studio

Minimal MCP Server for testing integration with Copilot Studio

Fergus MCP Server

Fergus MCP Server

Enables AI assistants to interact with Fergus job management platform through secure API integration. Supports managing jobs, customers, quotes, and sites with real-time data synchronization.

TAPD Data Fetcher

TAPD Data Fetcher

A Python MCP server that retrieves requirements and bug data from TAPD platform to provide AI clients with project management information.

Git MCP Server

Git MCP Server

Enables git repository operations through REST endpoints, providing access to repository status, diffs, and commits. Enforces security through configurable root directory allowlists for safe git operations.

NetSuite MCP Server by CData

NetSuite MCP Server by CData

NetSuite MCP Server by CData

Weather MCP Server

Weather MCP Server

Enables users to fetch current weather conditions for any city worldwide and display weather information as native system notifications on macOS. Provides human-readable weather data including temperature, conditions, humidity, wind speed, and atmospheric pressure.

Claude Continuity MCP Server

Claude Continuity MCP Server

A Model Context Protocol server that provides persistent memory and conversation continuity for Claude Desktop and Claude Code, allowing users to save and restore project context when threads hit token limits.

Frida MCP

Frida MCP

Enables AI systems to interact with mobile and desktop applications through Frida's dynamic instrumentation capabilities. Provides process management, device control, JavaScript REPL execution, and script injection for runtime analysis and reverse engineering.

WooCommerce MCP Server

WooCommerce MCP Server

Bitso MCP Server

Bitso MCP Server

Enables access to Bitso cryptocurrency exchange data through comprehensive withdrawal and funding transaction tools. Features production-ready authentication, caching, and complete API integration for monitoring exchange activities.

MCP-ArcKnowledge

MCP-ArcKnowledge

Dengan ini, Anda dapat dengan mudah mengelola dan menanyakan daftar basis pengetahuan Anda (titik akhir webhook). Anda dapat menambahkan sumber dokumen baru dengan mendaftarkan URL mereka, dan secara opsional memberikan deskripsi dan kunci API. Anda juga dapat melihat daftar semua sumber dokumen yang terdaftar dan melihat detailnya. Ketika Anda...

MCP Memory Server

MCP Memory Server

Enables AI assistants to store and retrieve long-term memories using PostgreSQL with vector similarity search. Supports semantic memory operations, tagging, and real-time updates for persistent learning across conversations.

Blockchain Payment MCP Server

Blockchain Payment MCP Server

Enables blockchain payment operations across multiple networks including Base, Ethereum, BSC, Polygon, and Avalanche. Supports balance queries, token transfers, transaction tracking, wallet management, and gas fee estimation with built-in security limits.

REI3 Tickets MCP Server

REI3 Tickets MCP Server

Enables AI assistants to create tickets and worklog entries in REI3 ticket management systems through the REI3 Tickets API. Supports secure authentication and provides natural language interface for ticket operations.

mcp-server-macos-use

mcp-server-macos-use

AI agent that controls computer with OS-level tools, MCP compatible, works with any model

OpsNow MCP Asset Server

OpsNow MCP Asset Server