Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion microsoft-teams/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"friendlyName": "Microsoft Teams",
"connection": {
"type": "HTTP",
"url": "https://microsoft-teams-mcp.decocms.com/mcp"
"url": "https://graph-mcp.decocms.com/mcp"
},
"description": "Microsoft Teams integration — send channel and private chat messages, manage meetings, and trigger agents on new Teams messages via the Microsoft Graph API.",
"icon": "https://upload.wikimedia.org/wikipedia/commons/9/94/Microsoft_Office_Teams_%282019%E2%80%932025%29.svg",
Expand Down
3 changes: 1 addition & 2 deletions microsoft-teams/server/tools/subscriptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,7 @@ function getConnectionId(env: Env): string {
}

function buildNotificationUrl(connectionId: string): string {
const base =
process.env.SERVER_PUBLIC_URL ?? `https://microsoft-teams-mcp.decocms.com`;
const base = process.env.SERVER_PUBLIC_URL ?? `https://graph-mcp.decocms.com`;
return `${base.replace(/\/$/, "")}/teams/notifications/${connectionId}`;
}

Expand Down
4 changes: 1 addition & 3 deletions microsoft-teams/server/types/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ export const StateSchema = z.object({
// Webhook URL shown to the user so they know where Graph notifications land
WEBHOOK_URL: z
.string()
.default(
"https://microsoft-teams-mcp.decocms.com/teams/notifications/{connectionId}",
)
.default("https://graph-mcp.decocms.com/teams/notifications/{connectionId}")
.readonly()
.describe(
"Endpoint where Microsoft Graph change notifications are delivered. When developing locally, expose this via ngrok.",
Expand Down
2 changes: 1 addition & 1 deletion microsoft-teams/wrangler.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ compatibility_date = "2025-06-17"
compatibility_flags = ["nodejs_compat"]

routes = [
{ pattern = "microsoft-teams-mcp.decocms.com", custom_domain = true },
{ pattern = "graph-mcp.decocms.com", custom_domain = true },
]

[observability]
Expand Down
Loading