Devcon MCP Workshop 2026

Devcon MCP Workshop 2026

MCP server integrating Autodesk Platform Services, exposing tools for LLM clients like VS Code Copilot, with OAuth authentication and agentic workflow support.

Category
Visit Server

README

šŸš€ MCP Server with Autodesk Platform Services (APS)

Node.js MCP License Status


šŸ“Œ Overview

This project implements a Model Context Protocol (MCP) server with support for:

  • Tool exposure for LLM clients (e.g., VS Code Copilot)
  • External API integration
  • Autodesk Platform Services (APS) connectivity
  • Authentication flows (2-legged & 3-legged OAuth)
  • Custom client + agent architecture

It represents a production-oriented agentic AI backend system.


🧠 Architecture

šŸ”· High-Level Flow


+------------------------+
| LLM Client (VSCode)    |
| Copilot / Chat UI      |
+-----------+------------+
            |
            v
+------------------------+
| MCP Server             |
| (server.js / aps)      |
+-----------+------------+
            |
------------------------------------------------
      |                |                |
      v                v                v
+-------------+ +-------------+ +----------------+
| External    | |   APS APIs  | |  Custom Logic  |
| APIs        | | (OAuth)     | |   / Tools      |
+-------------+ +-------------+ +----------------+

šŸ”· Agent Flow

User Prompt
↓
LLM decides tool
↓
MCP Server executes tool
↓
External API / APS call
↓
Structured response → LLM → User

šŸ“ Project Structure

ā”œā”€ā”€ .vscode/
│ └── mcp.json # MCP configuration for VS Code client
│
ā”œā”€ā”€ node_modules/ # Installed dependencies
│
ā”œā”€ā”€ .env # Environment variables (API keys, secrets)
ā”œā”€ā”€ .gitignore # Git ignored files
│
ā”œā”€ā”€ agent.js # Agent logic (tool orchestration)
ā”œā”€ā”€ aps-server.js # APS integration server (OAuth + APIs)
ā”œā”€ā”€ client.js # Custom MCP client implementation
ā”œā”€ā”€ server.js # Core MCP server (tool definitions)
│
ā”œā”€ā”€ package.json # Project metadata & dependencies
ā”œā”€ā”€ package-lock.json # Dependency lock file


āš™ļø Tech Stack

  • Node.js (ES Modules)
  • Model Context Protocol (MCP SDK)
  • Zod (schema validation)
  • HTTP Streaming Transport
  • Autodesk Platform Services (APS)

šŸ”‘ Key Components

1. server.js

  • Core MCP server
  • Registers tools
  • Handles client requests

2. aps-server.js

  • Integrates Autodesk APIs
  • Handles OAuth (2L + 3L)
  • Secure API communication

3. agent.js

  • Implements agentic behavior
  • Decides which tools to call
  • Enables multi-step workflows

4. client.js

  • Custom MCP client
  • Can simulate or replace VS Code client

5. .vscode/mcp.json

  • Connects VS Code → MCP server

šŸš€ Getting Started

1ļøāƒ£ Install Dependencies

npm install

2ļøāƒ£ Setup Environment

Create .env file:

PORT=3000

# APS Credentials
APS_CLIENT_ID=your_client_id
APS_CLIENT_SECRET=your_client_secret

# External APIs
GEMINI_API_KEY=your_key

3ļøāƒ£ Run Server

node server.js

Expected output:

MCP server running at http://localhost:3000/mcp

4ļøāƒ£ Configure VS Code

Create:

.vscode/mcp.json

{
  "servers": {
    "devcon-workshop": {
      "type": "http",
      "url": "http://localhost:3000/mcp"
    },
    "devcon-aps": {
      "type": "http",
      "url": "http://localhost:3001/mcp"
    }
  }
}

5ļøāƒ£ Test Tools

In Copilot Chat:

#add 10 and 20
#greet John in spanish
What's the weather in London?

🧩 Tool Design Pattern

server.registerTool(
"tool_name",
{
description: "Tool description",
inputSchema: {
param: z.string()
}
},
async ({ param }) => ({
content: [{ type: "text", text: "Result" }]
})
);

šŸ” Authentication

āœ… 2-Legged OAuth

Server-to-server

No user interaction

āœ… 3-Legged OAuth

User consent required

Fine-grained permissions

Recommended for production


šŸ—ļø Production Considerations

šŸ”¹ Scalability

Stateless architecture

Horizontal scaling possible

šŸ”¹ Security

Use .env for secrets

Prefer 3LO for user data

šŸ”¹ Reliability

Input validation (Zod)

Structured responses

šŸ”¹ Observability Add logging for tool execution

Monitor API failures


šŸŽÆ Features

āœ” MCP-compliant server

āœ” External API integration

āœ” APS connectivity

āœ” Agent-based execution

āœ” Custom client support


šŸ”® Future Enhancements

Dockerize the application

Deploy on Azure / AWS

Add database-backed tools

Implement caching layer

šŸ“œ License

MIT License


šŸ™Œ Acknowledgements

  • Autodesk Platform Services (APS)
    https://autodesk-platform-services.github.io/mcp-devcon2026/

  • Model Context Protocol (MCP)

  • OpenAI / LLM ecosystem

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured