
nebulablock-mcp-server
This server integrates with the fastmcp library to expose the full range of NebulaBlock API functionalities as accessible tools, enabling seamless and efficient interaction within any MCP-compatible environment.
README
NebulaBlock API MCP
This repository hosts the official NebulaBlock API Model Context Protocol (MCP) server. This server integrates with the fastmcp
library to expose the full range of NebulaBlock API functionalities as accessible tools, enabling seamless and efficient interaction within any MCP-compatible environment.
Project Structure
.
├── src/
│ ├── __init__.py
│ ├── config.py
│ ├── main.py
│ ├── tools.py
│ └── mcp_project.egg-info/
├── tests/
│ ├── __init__.py
│ └── test_main.py
├── scripts/
├── docs/
├── .env.example
├── .gitignore
├── pyproject.toml
├── README.md
└── uv.lock
src/
: Contains the main application source code, including configuration and tool definitions.tests/
: Contains unit and integration tests.scripts/
: Reserved for utility scripts (e.g., setup, data generation).docs/
: Reserved for supplementary documentation..env.example
: Example file for environment variables..gitignore
: Specifies intentionally untracked files to ignore.pyproject.toml
: Project metadata and build system configuration, including dependencies and project information.README.md
: This documentation file.uv.lock
: Lock file foruv
dependency management.
Installation and Setup
To set up and run this project, follow these steps:
-
Clone the repository (if applicable):
git clone https://github.com/Nebula-Block-Data/api-mcp cd mcp-project
-
Create a virtual environment: It's highly recommended to use a virtual environment to manage project dependencies.
python3 -m venv .venv
-
Activate the virtual environment:
- macOS/Linux:
source .venv/bin/activate
- Install dependencies:
This project uses
pyproject.toml
for dependency management. Installsetuptools
and then the project in editable mode.
This will installuv pip install -e .
fastmcp
and any other dependencies specified inpyproject.toml
.
Running the NebulaBlock API MCP Server
To start the NebulaBlock API MCP server:
uv run -m src.main
You should see output similar to: [05/29/25 17:32:58] INFO Starting MCP server 'FastMCP' with transport 'stdio'
Configuring API Key
The NebulaBlock API key can be configured in two ways:
-
Using the
--api-key
command-line argument: You can provide the API key directly when running the application:python -m src.main --api-key your_nebula_block_api_key
This method will override any API key set in the
.env
file. -
Using a
.env
file: Create a file named.env
in the root directory of the project and add your API key to it:NEBULA_BLOCK_API_KEY=your_nebula_block_api_key
The application will automatically load the API key from this file if the
--api-key
argument is not provided.
Running Tests
To run the unit tests, ensure your virtual environment is activated and pytest
is installed (it will be installed with pip install -e .
):
pytest
You should see output indicating that the tests passed.
Integrating with an MCP Client
To utilize the NebulaBlock API MCP server, you need to configure your MCP client (e.g., VS Code with an MCP extension) to connect to this server. Below is an example configuration for a settings.json
file:
{
"mcpServers": {
"nebula": {
"command": "~/path/to/uv",
"args": [
"--directory",
"~/path/to/nebulablock_mcp",
"run",
"-m",
"src.main",
"--api-key=YOUR_API_KEY"
]
}
}
}
- Replace
~/path/to/uv
with the actual path to youruv
executable. - Replace
~/path/to/nebulablock_mcp
with the actual path to your project directory. - Replace
YOUR_API_KEY
with your actual NebulaBlock API key.
License
This project is licensed under the MIT License. See the LICENSE
file (if created) for details.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.