Nerdearla MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Nerdearla MCP Serverlist the speakers for Nerdearla 2024"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Nerdearla MCP Server
š Live Server: The server is running at https://mcp.nerdear.la/mcp
An MCP (Model Context Protocol) server that provides information about Nerdearla events, speakers, and sessions. Built with FastMCP and supports streamable HTTP in stateless mode with JSON responses.
Quick Start - Add to VS Code Copilot
To use this MCP server with VS Code Copilot:
Open the command palette in VS Code (
Cmd+Shift+P/Ctrl+Shift+P)Type "MCP: Add Server" and select it
Select "HTTP" as the server type
Enter the server URL:
https://mcp.nerdear.la/mcpGive it a name, any name is fine
Select if you want to save it in your user or workspace settings
You can now ask Copilot about Nerdearla events, speakers, and sessions!
Related MCP server: Sessionize
Quick Start - Add to your favourite Agent/IDE
Most Agents/IDEs support MCP servers out of the box. Check your documentation for instructions on how to add a new server.
Local Developtment Setup
This project uses uv for dependency management. Make sure you have uv installed:
# Install uv if you haven't already
curl -LsSf https://astral.sh/uv/install.sh | shThen install the project dependencies:
# Clone and navigate to the repository
cd nerdearla-mcp
# Install dependencies with uv
uv syncUsage
Running the Server
Start the MCP server:
# Using uv
uv run nerdearla-mcp
# Or directly with Python
uv run python -m nerdearla_mcp.serverThe server will start on http://localhost:8000/mcp by default.
Development
Project Structure
nerdearla-mcp/
āāā nerdearla_mcp/
ā āāā __init__.py
ā āāā server.py # Main MCP server implementation
āāā pyproject.toml # Project configuration and dependencies
āāā README.md # This file
āāā ...Adding New Tools
To add new tools to the server:
Define your tool function in
nerdearla_mcp/server.pyUse the
@mcp.tool()decoratorAdd proper type hints and docstrings
Implement the tool to retrieve the data from an API, file or database as needed
Example:
@mcp.tool()
def get_sponsors(tier: Optional[str] = None) -> List[Dict[str, Any]]:
"""
Get information about event sponsors.
Args:
tier: Optional filter by sponsor tier (e.g., "Gold", "Silver", "Bronze")
Returns:
List of sponsor information
"""
# Implementation here
passRunning Tests
# Run tests with pytest
uv run pytestCode Formatting
Pre-commit Hooks (Recommended)
This project uses pre-commit hooks to automatically format and lint code before commits:
Install pre-commit hooks:
# Install dependencies (includes pre-commit)
uv sync
# Install the git hooks
uv run pre-commit installUsage:
Hooks run automatically on
git commitTo run manually on all files:
uv run pre-commit run --all-filesTo skip hooks for a commit:
git commit --no-verify
The hooks will automatically:
Format code with Black
Lint and fix issues with Ruff
Format code with Ruff formatter
Configuration
Port Configuration
The server runs on port 8000 by default. You can configure the port using environment variables:
Environment Variable:
export PORT=3000
uv run nerdearla-mcpUsing .env file:
Create a .env file in the project root:
PORT=3000Priority order:
Environment variable
PORT.envfileDefault: 8000
Server Configuration
The server uses streamable HTTP transport with the following default settings:
Host:
0.0.0.0(accepts connections from any IP)Port: as described above
Path:
/mcp(API endpoint)Transport:
streamable-httpMode:
stateless_http=True
Contributing
Fork the repository
Make your changes
Add tests if applicable
Run the linter and formatter
Submit a pull request
License
See the LICENSE file for details.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseAqualityDmaintenanceProvides real-time access to the Nerdearla conference agenda, enabling users to query upcoming talks, past sessions, topic recommendations, and event schedules through natural language interactions.712
- AlicenseAqualityAmaintenanceMCP server for accessing Sessionize event data. Query speakers, sessions, and schedules from any Sessionize-powered conference using natural language.63Apache 2.0
- Flicense-qualityDmaintenanceProvides access to CERN Indico public events, enabling search, retrieval of event details, and listing of upcoming events through natural language.1
- AlicenseBqualityDmaintenanceEnables natural language access to the Eventbrite API for creating, managing, and interacting with events, venues, and categories.13112MIT
Related MCP Connectors
Talk to your live-events CRM (campaigns, analytics, paid ads, segments) in Claude and ChatGPT.
Official Microsoft MCP Server to query Microsoft Entra data using natural language
Run AI customer support from your terminal: conversations, knowledge base, and chat widget.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/sysarmy/nerdearla-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server