SSOJet MCP Server

SSOJet MCP Server

An MCP server that authenticates users via SSOJet and provides tools such as adding two numbers. Enables secure access to tools after OIDC authentication.

Category
访问服务器

README

Model Context Protocol (MCP) Server (SSOJet)

This is a Model Context Protocol (MCP) server powered by SSOJet for authentication. Users must first sign in with SSOJet. Once authenticated, they can access and use secure tools such as the add tool exposed by this server.


Configuration

SSOJet Setup

  1. Go to your SSOJet dashboard.
  2. Create a new Single page web application.
  3. Set the callback URL for local development:
http://localhost:8788/callback
  1. Note the following details from your app:

    • Client ID
    • Client Secret
    • Issuer URL (e.g. https://<your-tenant>.auth.ssojet.com/v1/)

These will be used to configure your server.


Set up a KV Namespace

This project uses a Cloudflare KV namespace to store token metadata:

wrangler kv:namespace create "OAUTH_KV"

Then, add the KV binding to your wrangler.jsonc.


Environment Variables

The following environment variables must be configured to run the server:

Variable Description
SSOJET_CLIENT_ID The Client ID from your SSOJet application
SSOJET_CLIENT_SECRET The Client Secret from your SSOJet application
SSOJET_ISSUER The issuer URL (e.g. https://<your-tenant>.auth.ssojet.com/v1/)
SSOJET_SCOPE Scopes to request (e.g. openid profile email)
NODE_ENV Use development for local development
API_BASE_URL Not required in this case (unless your tool makes API calls externally)

Development

Create a .dev.vars file in the root of your project:

SSOJET_CLIENT_ID=<your_ssojet_client_id>
SSOJET_CLIENT_SECRET=<your_ssojet_client_secret>
SSOJET_ISSUER=https://<your-tenant>.auth.ssojet.com/v1/
SSOJET_SCOPE="openid profile email"
NODE_ENV=development

Then run the MCP server locally:

npm run dev

Tool Available

The server currently provides a single tool:

Tool Description
add Adds two numbers together. Useful for simple math operations.

Once the user signs in via SSOJet, this tool becomes accessible through compatible MCP clients such as the Workers AI LLM Playground.


Testing with MCP Inspector

You can test your server locally with MCP Inspector:

  1. Set the Transport to sse

  2. Set the URL to:

    http://localhost:8788/sse
    
  3. A popup will appear for SSOJet authentication

  4. Once logged in, you’ll see the available tools


Deploying to Cloudflare

Before deploying, set the necessary secrets in your Cloudflare environment:

wrangler secret put SSOJET_CLIENT_ID
wrangler secret put SSOJET_CLIENT_SECRET
wrangler secret put SSOJET_ISSUER
wrangler secret put SSOJET_SCOPE

Deploy with:

npm run deploy

Then, in the SSOJet dashboard, add your deployed callback URL:

https://mcp-ssojet-oidc.<your-subdomain>.workers.dev/callback

To use the deployed server with MCP Inspector or the LLM Playground, use this endpoint:

https://mcp-ssojet-oidc.<your-subdomain>.workers.dev/sse

Troubleshooting

Cloudflare Worker Logs

You can inspect logs and errors using Cloudflare’s observability dashboard:

🔗 Cloudflare Workers Logs

SSOJet Logs

Visit your SSOJet dashboard and check the Logs section to diagnose authentication issues.


Common Issues

  • ❌ Invalid credentials: Double-check that secrets match your SSOJet application.
  • ❌ Missing callback URL: Ensure all callback URLs are added in your SSOJet dashboard.
  • ❌ Tool not showing: Make sure you're authenticated and using the correct endpoint.
  • ❌ Local connection failed: Ensure the MCP server is running on http://localhost:8788.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选