Skip to content

Commit 9048488

Browse files
committed
Add October 2025 meetup
1 parent fd68ef5 commit 9048488

File tree

2 files changed

+53
-0
lines changed

2 files changed

+53
-0
lines changed
70.6 KB
Loading
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace MergePHP\Website\Meetup;
6+
7+
use DateTimeImmutable;
8+
use DateTimeZone;
9+
use MergePHP\Website\AbstractMeetup;
10+
11+
class Meetup20251009RollYourOwnGraphDrivenMcpServer extends AbstractMeetup
12+
{
13+
public function getTitle(): string
14+
{
15+
return 'Roll Your Own Graph-Driven MCP Server';
16+
}
17+
18+
public function getDescription(): string
19+
{
20+
return <<<END
21+
Receive a ready-to-use blueprint for building your Model Context Protocol server with Neo4j. We'll start with
22+
a quick survey of driver options across languages, then dive into how we built one using the PHP driver in a
23+
Symfony app, covering connection setup, session, and transaction handling before wrapping it all up with a
24+
live demo that ties it all together.
25+
END;
26+
}
27+
28+
public function getDateTime(): DateTimeImmutable
29+
{
30+
/** @noinspection PhpUnhandledExceptionInspection */
31+
return new DateTimeImmutable('2025-10-09 19:00:00', new DateTimeZone('America/New_York'));
32+
}
33+
34+
public function getImage(): string
35+
{
36+
return '/images/roll-your-own-graph-driven-mcp-server.jpg';
37+
}
38+
39+
public function getSpeakerName(): string
40+
{
41+
return 'Ghlen Nagels';
42+
}
43+
44+
public function getSpeakerBio(): string
45+
{
46+
return <<<END
47+
Ghlen Nagels is a Belgian entrepreneur and senior software engineer who runs a small IT consulting firm with
48+
teams in Belgium and Mumbai, India. He maintains the Neo4j PHP driver, contributes to open-source projects,
49+
and partners with startups and SMEs on cloud applications using PHP, graph and relational databases. Beyond
50+
his work life, he's an avid runner with a passion for craft beer.
51+
END;
52+
}
53+
}

0 commit comments

Comments
 (0)